POST
/
v1
/
collections
/
fetch
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.

The body is of type object.

Response

200
application/json

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

The response is of type object[].