Last updated 3 months ago
Searches for collections based on provided filters.
/v0/collection/multi-search
curl -L \ --request POST \ --url 'https://indexer-dev.saturnbtc.io/v0/collection/multi-search' \ --header 'Content-Type: application/json' \ --data '{"sort":[{}]}'
{ "offset": 1, "response": [ { "id": "text", "name": "text", "displayName": "text", "symbol": "text", "tradeable": true, "verified": true, "icon": "text", "priority": 1, "divisibility": 1, "supply": "text", "batchSize": "text", "transactionId": "text", "createdAt": "text", "type": null } ] }
Searches for mintable collections based on provided filters.
/v0/collection/mintable/multi-search
curl -L \ --request POST \ --url 'https://indexer-dev.saturnbtc.io/v0/collection/mintable/multi-search' \ --header 'Content-Type: application/json' \ --data '{"sort":[{}]}'
{ "offset": 1, "response": [ { "id": "text", "name": "text", "displayName": "text", "symbol": "text", "tradeable": true, "verified": true, "icon": "text", "priority": 1, "divisibility": 1, "supply": "text", "batchSize": "text", "transactionId": "text", "createdAt": "text", "type": null, "mint": { "amount": "text", "cap": "text", "mintable": true, "start": "text", "end": "text", "mints": "text", "progress": 1 } } ] }
Retrieves a mintable collection by its ID.
/v0/collection/mintable/{id}
The ID of the mintable collection.
curl -L \ --url 'https://indexer-dev.saturnbtc.io/v0/collection/mintable/{id}'
{ "id": "text", "name": "text", "displayName": "text", "symbol": "text", "tradeable": true, "verified": true, "icon": "text", "priority": 1, "divisibility": 1, "supply": "text", "batchSize": "text", "transactionId": "text", "createdAt": "text", "type": null, "mint": { "amount": "text", "cap": "text", "mintable": true, "start": "text", "end": "text", "mints": "text", "progress": 1 } }
Retrieves a collection by its ID.
/v0/collection/id/{id}
The ID of the collection.
curl -L \ --url 'https://indexer-dev.saturnbtc.io/v0/collection/id/{id}'
{ "id": "text", "name": "text", "displayName": "text", "symbol": "text", "tradeable": true, "verified": true, "icon": "text", "priority": 1, "divisibility": 1, "supply": "text", "batchSize": "text", "transactionId": "text", "createdAt": "text", "type": null }
Retrieves a collection by its name.
/v0/collection/name/{name}
The name of the collection.
curl -L \ --url 'https://indexer-dev.saturnbtc.io/v0/collection/name/{name}'
Retrieves multiple collections by their IDs.
/v0/collection/ids
curl -L \ --url 'https://indexer-dev.saturnbtc.io/v0/collection/ids?ids=text'
[ { "id": "text", "name": "text", "displayName": "text", "symbol": "text", "tradeable": true, "verified": true, "icon": "text", "priority": 1, "divisibility": 1, "supply": "text", "batchSize": "text", "transactionId": "text", "createdAt": "text", "type": null } ]
Retrieves multiple collections by their names.
/v0/collection/names
curl -L \ --url 'https://indexer-dev.saturnbtc.io/v0/collection/names?names=text'