Transaktionsliste
Suchen und paginieren Sie durch Transaktionen mit flexiblen Filtern. Autorisierung via API-Key.
Anfrage
GET /api/v1/transactions?query_params
Header: x-api-key: <api_key>
Filterparameter
Param | Beschreibung | Beispiel |
---|---|---|
unspecified_id | Beliebiger Identifier (intern/extern/provider) | 10077001 |
started_to | Start vor Zeit (ISO) | 2025-09-01T10:45:14Z |
started_from | Start nach Zeit (ISO) | 2025-09-01T10:45:14Z |
updated_to | Update vor Zeit | 2025-09-01T11:45:14Z |
updated_from | Update nach Zeit | 2025-09-01T11:45:14Z |
type | payment oder payout | payment |
status | Status | charged |
env | Umgebung | prod |
amount_to | Betrag <= | 10000 |
amount_from | Betrag >= | 10000 |
txid | Externe ID | 98817018 |
order_by | Sortierfeld (started/updated) | started |
limit | Seitengröße (Default 100) | 50 |
page | Seitennummer (1-basiert) | 2 |
Beispiel
curl --location 'https://app.heth.me/api/v1/transactions?started_from=2025-09-01T10:45:14Z&type=payment&status=charged&order_by=started&limit=30&page=2' \
--header 'x-api-key: IHR_KEY'
Antwortformat
[
{
"id": "c033ceaa-3726-4479-8be3-c9af8a0b2336",
"txid": "10077001",
"type": "payment",
"status": "charged",
"amount": 10000,
"currency": "USDT",
"env": "prod",
"started": "2025-09-05T13:57:56Z",
"finished": "2025-09-05T13:58:10Z",
"route": null
}
]
Hinweise
unspecified_id
für breite Identifier-Suche.- Zeitfenster einschränken für Performance.
- Standard: limit=100, page=1.
- Mit
order_by
+ Pagination stabil iterieren.