POST
/
v1
/
collections
/
fetch
Fetch Collections
curl --request POST \
  --url https://dev.api.mufi.app/v1/collections/fetch \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "limit": 10,
  "offset": 0
}'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "collection_id": 123,
    "last_minted_item_id": 123,
    "is_soulbound": true,
    "chain": "WestendAssetHub",
    "error": "<string>",
    "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "status": "Pending",
    "owner": "<string>",
    "creator": "<string>"
  }
]

Authorizations

x-api-key
string
header
required

The API Key you were given in the developer portal. API keys are associated with your organization's project application and can have read or write permissions and an optional expiration date.

Body

application/json

Collection and pagination parameters. limit defaults to 10 and has a max limit of 500.

limit
number
default:10
Required range: 1 <= x <= 500
offset
number
default:0

Response

Contains a list of all Collections created for a project containing their status, id, collectionId (AssetHub ID), and additional data.

id
string<uuid>
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
last_minted_item_id
number
required
is_soulbound
boolean
required
chain
enum<string>
required
Available options:
WestendAssetHub,
AssetHub
project_id
string<uuid>
required
name
string
required
status
enum<string>
required
Available options:
Pending,
Processing,
Created,
CreatedWithMetadata,
Failed
collection_id
number | null
error
string | null
owner
string | null
creator
string | null