cURL
curl --request GET \ --url https://sand.tranzor.io/api/v1/invoices \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "invoices": [ { "id": "<string>", "amount": 123, "currency": "<string>", "status": "PENDING", "orderId": "<string>", "paidChain": "<string>", "paidAt": "2023-11-07T05:31:56Z", "expiresAt": "2023-11-07T05:31:56Z", "createdAt": "2023-11-07T05:31:56Z" } ], "pagination": { "total": 123, "limit": 123, "offset": 123 } } }
Возвращает список инвойсов с пагинацией и фильтрами.
API ключ в формате trz_...
trz_...
Фильтр по статусу
PENDING
PAID
EXPIRED
CANCELLED
Поиск по вашему orderId
Количество записей
x <= 100
Смещение
Список инвойсов
Show child attributes