Orders
Endpoints для списка заявок и справочника статусов.
Публичные статусы заявок
Standard success envelope.
GET /api/v3/public/orders/statuses HTTP/1.1
Accept: */*
Standard success envelope.
{
"state": 0,
"message": "text",
"result": null,
"meta": {
"request_id": "text",
"correlation_id": "text",
"timestamp": "2026-01-01T00:00:00.000Z",
"pagination": {
"mode": "page",
"current_page": 1,
"per_page": 1,
"total": 1,
"last_page": 1,
"from": 1,
"to": 1,
"cursor": "text",
"next_cursor": "text",
"has_more": true
}
}
}Приватные статусы заявок
Sanctum token in Authorization: Bearer <token> format.
Standard success envelope.
GET /api/v3/private/orders/statuses HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Standard success envelope.
{
"state": 0,
"message": "text",
"result": null,
"meta": {
"request_id": "text",
"correlation_id": "text",
"timestamp": "2026-01-01T00:00:00.000Z",
"pagination": {
"mode": "page",
"current_page": 1,
"per_page": 1,
"total": 1,
"last_page": 1,
"from": 1,
"to": 1,
"cursor": "text",
"next_cursor": "text",
"has_more": true
}
}
}Список заявок
Sanctum token in Authorization: Bearer <token> format.
125Use cursor for large datasets. The first cursor page uses pagination=cursor; next pages use cursor.
pagePossible values: Opaque cursor returned in meta.pagination.next_cursor.
Comma-separated sort fields. Allowed: id, created_at, updated_at, completed_at, amount_in, amount_out, status.
-created_atpaid,completedUSDTStandard success envelope.
Standard error envelope.
GET /api/v3/private/orders HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"state": 0,
"message": "text",
"result": null,
"meta": {
"request_id": "text",
"correlation_id": "text",
"timestamp": "2026-01-01T00:00:00.000Z",
"pagination": {
"mode": "page",
"current_page": 1,
"per_page": 1,
"total": 1,
"last_page": 1,
"from": 1,
"to": 1,
"cursor": "text",
"next_cursor": "text",
"has_more": true
}
}
}Получить заявку
Sanctum token in Authorization: Bearer <token> format.
Database id, public_id or tracking_id.
Standard success envelope.
Standard error envelope.
GET /api/v3/private/orders/{order} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"state": 0,
"message": "text",
"result": null,
"meta": {
"request_id": "text",
"correlation_id": "text",
"timestamp": "2026-01-01T00:00:00.000Z",
"pagination": {
"mode": "page",
"current_page": 1,
"per_page": 1,
"total": 1,
"last_page": 1,
"from": 1,
"to": 1,
"cursor": "text",
"next_cursor": "text",
"has_more": true
}
}
}Последнее обновление
Это было полезно?