curl -X GET 'https://api.eyowallet.ru/api/v1/withdraw/list?limit=50&offset=0&status=COMPLETED' \
-H 'X-API-Key: sua_api_key'
{
"success": true,
"data": {
"withdraws": [
{
"id": "withdraw_abc123",
"correlationID": "mistic_transaction_id",
"value": 10000,
"status": "COMPLETED",
"pixKey": "usuario@example.com",
"description": "Saque para conta pessoal",
"metadata": {},
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
],
"pagination": {
"total": 1,
"limit": 50,
"offset": 0,
"hasMore": false
},
"statistics": {
"total": 1,
"completed": 1,
"pending": 0,
"failed": 0,
"totalValue": 10000
}
}
}
Saques
Listar Saques
Liste todos os saques do usuário com filtros e paginação
GET
/
api
/
v1
/
withdraw
/
list
curl -X GET 'https://api.eyowallet.ru/api/v1/withdraw/list?limit=50&offset=0&status=COMPLETED' \
-H 'X-API-Key: sua_api_key'
{
"success": true,
"data": {
"withdraws": [
{
"id": "withdraw_abc123",
"correlationID": "mistic_transaction_id",
"value": 10000,
"status": "COMPLETED",
"pixKey": "usuario@example.com",
"description": "Saque para conta pessoal",
"metadata": {},
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
],
"pagination": {
"total": 1,
"limit": 50,
"offset": 0,
"hasMore": false
},
"statistics": {
"total": 1,
"completed": 1,
"pending": 0,
"failed": 0,
"totalValue": 10000
}
}
}
curl -X GET 'https://api.eyowallet.ru/api/v1/withdraw/list?limit=50&offset=0&status=COMPLETED' \
-H 'X-API-Key: sua_api_key'
{
"success": true,
"data": {
"withdraws": [
{
"id": "withdraw_abc123",
"correlationID": "mistic_transaction_id",
"value": 10000,
"status": "COMPLETED",
"pixKey": "usuario@example.com",
"description": "Saque para conta pessoal",
"metadata": {},
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
],
"pagination": {
"total": 1,
"limit": 50,
"offset": 0,
"hasMore": false
},
"statistics": {
"total": 1,
"completed": 1,
"pending": 0,
"failed": 0,
"totalValue": 10000
}
}
}
Parâmetros
string
Filtrar por status:
PENDING, COMPLETED, FAILED.integer
default:"50"
Número máximo de resultados a retornar (máximo 100).
integer
default:"0"
Número de resultados a pular (para paginação).
Campos da Resposta
array
Lista de saques do usuário.
object
Informações de paginação incluindo total de registros e se há mais páginas.
object
Estatísticas resumidas dos saques, incluindo totais por status e valores.
Permissões Necessárias
Esta rota requer a permissãoread:withdraws.
Rate Limiting
- 10 req/s (600 req/min) por API Key
Esta rota possui cache de 60 segundos para melhorar a performance.
Authorizations
API Key obtida no painel da Eyo Wallet
Query Parameters
Filtrar por status
Available options:
PENDING, COMPLETED, FAILED Número máximo de resultados (máximo 100)
Required range:
x <= 100Número de resultados a pular (para paginação)