Skip to main content
POST
/
sound
/
metadata
/
tier
Update Tier Metadata
curl --request POST \
  --url https://api.inprocess.world/api/sound/metadata/tier \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "collection": {
    "address": "<string>",
    "chainId": 8453
  },
  "tier": 127,
  "newUri": "<string>"
}
'
{
  "hash": "<string>",
  "chainId": 8453
}

Authorizations

x-api-key
string
header
required

Artist API key for authentication. Get your API key from https://inprocess.world/manage/api-keys

Body

application/json
collection
object
required
tier
integer
required

Tier index to update the base URI for (0–255)

Required range: 0 <= x <= 255
newUri
string
required

New base URI to set for the tier (e.g. an Arweave or IPFS URI)

Response

Successful response

hash
string
required

Transaction hash of the operation

chainId
integer
required

Chain ID where the transaction was executed

Example:

8453