Skip to main content
POST
/
rpc
/
Metadata
/
GetTokenMetadata
GetTokenMetadata
curl --request POST \
  --url https://metadata.sequence.app/rpc/Metadata/GetTokenMetadata \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --data '
{
  "chainID": "80002",
  "contractAddress": "0xaf8a08bf8b2945c2779ae507dade15985ea11fbc",
  "tokenIDs": [
    "19371963813488842961773981353605630758075094402"
  ]
}
'
import requests

url = "https://metadata.sequence.app/rpc/Metadata/GetTokenMetadata"

payload = {
"chainID": "80002",
"contractAddress": "0xaf8a08bf8b2945c2779ae507dade15985ea11fbc",
"tokenIDs": ["19371963813488842961773981353605630758075094402"]
}
headers = {
"X-Access-Key": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'X-Access-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
chainID: '80002',
contractAddress: '0xaf8a08bf8b2945c2779ae507dade15985ea11fbc',
tokenIDs: ['19371963813488842961773981353605630758075094402']
})
};

fetch('https://metadata.sequence.app/rpc/Metadata/GetTokenMetadata', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://metadata.sequence.app/rpc/Metadata/GetTokenMetadata",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'chainID' => '80002',
'contractAddress' => '0xaf8a08bf8b2945c2779ae507dade15985ea11fbc',
'tokenIDs' => [
'19371963813488842961773981353605630758075094402'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Access-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://metadata.sequence.app/rpc/Metadata/GetTokenMetadata"

payload := strings.NewReader("{\n \"chainID\": \"80002\",\n \"contractAddress\": \"0xaf8a08bf8b2945c2779ae507dade15985ea11fbc\",\n \"tokenIDs\": [\n \"19371963813488842961773981353605630758075094402\"\n ]\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("X-Access-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://metadata.sequence.app/rpc/Metadata/GetTokenMetadata")
.header("X-Access-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"chainID\": \"80002\",\n \"contractAddress\": \"0xaf8a08bf8b2945c2779ae507dade15985ea11fbc\",\n \"tokenIDs\": [\n \"19371963813488842961773981353605630758075094402\"\n ]\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://metadata.sequence.app/rpc/Metadata/GetTokenMetadata")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["X-Access-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"chainID\": \"80002\",\n \"contractAddress\": \"0xaf8a08bf8b2945c2779ae507dade15985ea11fbc\",\n \"tokenIDs\": [\n \"19371963813488842961773981353605630758075094402\"\n ]\n}"

response = http.request(request)
puts response.read_body
{
  "tokenMetadata": [
    {
      "tokenId": "19371963813488842961773981353605630758075094402",
      "name": "Dragon Shield Shield",
      "description": "A free AI treasure chest mini-game",
      "image": "https://metadata.sequence.app/projects/1229/collections/40/tokens/19371963813488842961773981353605630758075094402/image.png",
      "properties": null,
      "attributes": [
        {
          "display_type": "category",
          "trait_type": "Category",
          "value": "defensive"
        },
        {
          "display_type": "defense_min",
          "trait_type": "Defense Minimum",
          "value": "59"
        },
        {
          "display_type": "defense_max",
          "trait_type": "Defense Maximum",
          "value": "67"
        },
        {
          "display_type": "tier",
          "trait_type": "tier",
          "value": "Common"
        },
        {
          "display_type": "type",
          "trait_type": "type",
          "value": "Shield"
        }
      ],
      "decimals": 0,
      "updatedAt": "2024-10-10T18:08:04.22766865Z"
    }
  ]
}
{
"error": "WebrpcEndpoint",
"code": 0,
"msg": "endpoint error",
"status": 400,
"cause": "<string>"
}
{
"error": "WebrpcBadResponse",
"code": -5,
"msg": "bad response",
"status": 500,
"cause": "<string>"
}

Authorizations

X-Access-Key
string
header
required

Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI

Body

application/json
chainID
string
contractAddress
string
tokenIDs
string[]

[]string

Response

OK

tokenMetadata
object[]

[]TokenMetadata

task
object