Data Flow Limiting
Enabled Features
Vaultody's API data flow limits are determined by your subscription tier. Higher tiers offer advanced features and increased data flow capacities. For subscription details, please contact us.
Using Pagination
Vaultody employs cursor-based pagination for bulk data retrieval in endpoints like addresses, vaults, and transactions. Key parameters include:
limit
: Optional; specifies the number of items per page (default is 50).startingAfter
: Optional; indicates the ID of the last item from the previous page.
Example Request
GET /vaults?limit=50&startingAfter=previousVaultId
Example Response
{
"apiVersion": "2023-04-20",
"requestId": "6579ae4c69f510b1f687c546",
"data": {
"limit": 50,
"hasMore": true,
"items": [
{
"id": "6544bd99e009a200076fac82",
"name": "Smart Vault",
"type": "test",
"backuped": false,
"createdTimestamp": 1699003801
}
]
}
}
Was this page helpful?
Yes
No
Loading...