Download OpenAPI specification:
The Tari indexer implementation
List epoch checkpoints from storage
| from_epoch | integer <int64> >= 0 Epoch to start listing from (inclusive). Defaults to 0 |
| limit | integer <int32> >= 0 Maximum number of checkpoints to return (default: 20, max: 100) |
{- "checkpoints": [
- { }
]
}Get non-fungibles by resource address
| address required | string |
| end_index required | integer <int64> >= 0 |
| start_index required | integer <int64> >= 0 |
{- "address": "string",
- "end_index": 0,
- "start_index": 0
}{- "non_fungibles": [
- {
- "address": "string",
- "substate": { },
- "version": 0
}
]
}Fetches a substate by ID
| substate_id required | string The substate ID to fetch |
| local_search_only required | boolean If true, only search local storage for the substate |
| version | integer <int32> >= 0 Minimum version of the substate to fetch |
{- "substate": { },
- "version": 0
}List all template cached by this indexer
| limit | integer <int32> >= 0 Limit the number of results returned |
{- "templates": [
- {
- "address": "string",
- "author_public_key": "string",
- "binary_sha": "string",
- "code_size": 0,
- "epoch": 0,
- "metadata_hash": "string",
- "name": "string"
}
]
}List templates discovered on the network via the template catalogue
| name_filter | string Substring filter on template name |
| limit | integer <int64> >= 0 Maximum entries to return (default: 20, max: 100) |
| after | string Cursor: return entries inserted after the row with this template address. Omit to start from the beginning |
{- "entries": [
- {
- "at_epoch": 0,
- "author_public_key": "string",
- "binary_hash": "string",
- "metadata_hash": "string",
- "template_address": "string",
- "template_name": "string"
}
]
}SSE stream of template-emitted transaction events. Supports catch-up via the after_id query parameter or Last-Event-ID header.
| topic | string Filter by event topic |
| substate_id | string Filter by substate ID |
| template_address | string Filter by template address |
| after_id | integer <int64> Resume from this event ID (exclusive) |
Gets full UTXO data for a list of UTXO IDs
| resource_address required | string |
required | Array of items |
{- "resource_address": "string",
- "tag_and_nonce_pairs": [
- [
- 0,
- "string"
]
]
}{- "utxos": [
- [
- "string",
- { }
]
]
}Streams UTXO updates
| from_epoch | integer <int64> >= 0 |
| per_shard_limit required | integer <int32> >= 0 |
| resource_address required | string |
required | Array of items |
| unspent_only | boolean |
{- "from_epoch": 0,
- "per_shard_limit": 0,
- "resource_address": "string",
- "shard_state_versions": [
- 0,
- 0
], - "unspent_only": true
}{- "error": "string"
}