Get off-chain NFT metadata statuses

Get off-chain NFT metadata statuses

GET /nft-token-offchain-metadata-statuses

Query params

None

Sorting

None

Optional properties

None

Response

List of value objects describing the available off-chain NFT metadata statuses

Example

curl -X 'GET' \
  'https://api.testnet.cspr.cloud/nft-token-offchain-metadata-statuses' \
  -H 'accept: application/json' \
  -H 'authorization: 55f79117-fc4d-4d60-9956-65423f39a06a'
{
  "data": [
    {
      "id": 0,
      "name": "None"
    },
    {
      "id": 1,
      "name": "Pending"
    },
    {
      "id": 2,
      "name": "Synced"
    },
    {
      "id": 3,
      "name": "Failed"
    }
  ]
}

Last updated