Asset Service
Blockchain Integration Data Provenance Apis Enhanced Provenance Apis Asset Service (v1.0.0)
Download OpenAPI specification:Download
API Documentation for Blockchain Integration Data Provenance Apis Enhanced Provenance Apis Asset Service
GetNavEvents
Retrieves NavEvents based on denom, scope, and optional filters.
Authorizations:
query Parameters
| denom | string (denom) The token denomination to filter events by. Either |
| scopeId | string (scope_id) The scope ID to filter events by. Either |
| priceDenoms | Array of strings (price_denoms) Optional. A list of price denominations to filter by. |
| 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
NUVA Labs API Server
Response samples
- 200
{- "navEvents": [
- {
- "blockHeight": 0,
- "blockTime": "2023-01-15T01:30:15.01Z",
- "chainId": 0,
- "txHash": "string",
- "blockOrder": 0,
- "eventType": "string",
- "scopeId": "string",
- "denom": "string",
- "priceAmount": 0,
- "priceDenom": "string",
- "volume": 0,
- "source": "string"
}
], - "pagination": {
- "nextCursor": "string",
- "hasMore": true,
- "dataAccessInfo": {
- "tier": "string",
- "isLimited": true,
- "info": "string"
}
}
}GetLatestNavEvents
Retrieves the latest NavEvents based on price denomination and marker/scope inclusion.
Authorizations:
query Parameters
| priceDenom | string (price_denom) The denomination of the price to filter by. |
| includeMarkers | boolean (include_markers) Boolean to include markers in the result. |
| includeScope | boolean (include_scope) Boolean to include scope in the result. |
| startTime | string (start_time) Optional. The start of the time range (inclusive), in ISO 8601 format (e.g. "2024-12-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
NUVA Labs API Server
Response samples
- 200
{- "navEvents": [
- {
- "blockHeight": 0,
- "blockTime": "2023-01-15T01:30:15.01Z",
- "chainId": 0,
- "txHash": "string",
- "blockOrder": 0,
- "eventType": "string",
- "scopeId": "string",
- "denom": "string",
- "priceAmount": 0,
- "priceDenom": "string",
- "volume": 0,
- "source": "string"
}
], - "pagination": {
- "nextCursor": "string",
- "hasMore": true,
- "dataAccessInfo": {
- "tier": "string",
- "isLimited": true,
- "info": "string"
}
}
}