Documentation Index
Fetch the complete documentation index at: https://docs.midasprotocol.org/llms.txt
Use this file to discover all available pages before exploring further.
Request
Number of transactions to return.
Number of transactions to skip.
curl "https://api.midasprotocol.org/wallets/history?limit=10&offset=0" \
-H "Authorization: Bearer pp_your_key"
Response
{
"data": [
{
"id": "uuid",
"type": "PAYMENT",
"direction": "outgoing",
"amount": "25.00",
"currency": "USDC",
"rail": "internal",
"fees": "0.50",
"status": "COMPLETED",
"createdAt": "2026-01-01T00:00:00.000Z"
}
],
"pagination": {
"total": 42,
"limit": 10,
"offset": 0,
"hasMore": true
}
}