Add Items

Add collection inscription.

post
Authorizations
Body
collectionIdstringrequired
itemsobject[]required

Responses
curl -L \
  --request POST \
  --url 'https://open-api-fractal.unisat.io/v1/collection-indexer/collection/add_items' \
  --header 'Authorization: Bearer JWT' \
  --header 'Content-Type: application/json' \
  --data '{
    "collectionId": "text",
    "items": [
      {
        "inscriptionId": "text",
        "itemName": "text",
        "attributes": [
          {
            "traitType": "text",
            "value": "text"
          }
        ]
      }
    ]
  }'
{
  "code": 1,
  "msg": "text",
  "data": {}
}

Last updated