Transfer Events
Blockchain Integration Data Provenance Apis Enhanced Provenance Apis Transfer Events (v1.0.0)
Download OpenAPI specification:Download
API Documentation for Blockchain Integration Data Provenance Apis Enhanced Provenance Apis Transfer Events
GetTransferEvents
GetTransferEvents retrieves transfer events filtered by sender, recipient, denom, and optional time-range.
Authorizations:
query Parameters
| sender | string (sender) Optional. The sender address to filter transfer events by. |
| recipient | string (recipient) Optional. The recipient address to filter transfer events by. |
| denom | string (denom) Optional. The denomination of the asset being transferred (e.g. "nhash"). |
| startTime | string (start_time) Optional. The start of the time range (inclusive), in ISO 8601 format (e.g. "2024-12-01T00:00:00Z"). |
| endTime | string (end_time) Optional. The end of the time range (inclusive), in ISO 8601 format (e.g. "2025-01-01T00:00:00Z"). |
| pagination.cursor | string (cursor) A base64-encoded string representing the position in the dataset from which to start fetching results. This is typically the 'next_cursor' value returned from a previous response. |
| pagination.pageSize | integer <int32> (page_size) The number of records to return in this page. If not specified, a default will be used. |
Responses
Response samples
- 200
{- "transferEvents": [
- {
- "blockHeight": 0,
- "blockTime": "2023-01-15T01:30:15.01Z",
- "chainId": 0,
- "txHash": "string",
- "sender": "string",
- "recipient": "string",
- "denom": "string",
- "amount": 0,
- "eventMode": "string",
- "blockOrder": 0,
- "multiOrder": 0
}
], - "pagination": {
- "nextCursor": "string",
- "hasMore": true,
- "dataAccessInfo": {
- "tier": "string",
- "isLimited": true,
- "info": "string"
}
}
}