Download OpenAPI specification:
The Tari indexer implementation
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,
- "name": "string"
}
]
}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"
}