Skip to main content
GET
/
v1
/
swap
/
history
curl -X GET 'https://crypto-api.yativo.com/api/v1/swap/history?limit=20&offset=0&status=completed' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{"success": true, "data": []}

Documentation Index

Fetch the complete documentation index at: https://docs.yativo.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
limit
integer
Maximum number of swaps to return. Defaults to 20.
offset
integer
Number of records to skip for pagination. Defaults to 0.
status
string
Filter by swap status. One of: pending, completed, failed.
curl -X GET 'https://crypto-api.yativo.com/api/v1/swap/history?limit=20&offset=0&status=completed' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{"success": true, "data": []}