Logo
Fireblocks API Documentation

Get collections

GET {{baseUrl}}/tokenization/collections

Get collections (paginated)

 

Body PARAM

Key Datatype Required Description 
pageCursor
string Page cursor to get the next page, for example - "MjAyMy0xMi0xMyAyMDozNjowOC4zMDI=:MTEwMA=="
pageSize
number Number of items per page (max 100), requesting more then 100 will return 100 items



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "data": [ { "id": "<string>", "status": "COMPLETED", "type": "SEMI_FUNGIBLE_TOKEN", "displayName": "<string>", "collectionMetadata": { "fbCollectionId": "<string>", "blockchainDescriptor": "<string>", "name": "<string>", "symbol": "<string>", "standard": "<string>", "contractAddress": "<string>" } }, { "id": "<string>", "status": "COMPLETED", "type": "NON_FUNGIBLE_TOKEN", "displayName": "<string>", "collectionMetadata": { "fbCollectionId": "<string>", "blockchainDescriptor": "<string>", "name": "<string>", "symbol": "<string>", "standard": "<string>", "contractAddress": "<string>" } } ], "next": "<string>" }


Curl
curl -X GET 'https://api.fireblocks.io/v1/tokenization/collections?pageCursor=<string>&pageSize=100' -H 'Accept: application/json'

ENDPOINTS