Skip to main content
POST
/
api
/
blur
/
tokens
/blur/tokens
curl --request POST \
  --url https://api.anysite.io/api/blur/tokens \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "collection": "<string>",
  "token_id": "<string>",
  "timeout": 300
}
'
[
  {
    "token_id": "<string>",
    "@type": "BlurToken",
    "name": "<string>",
    "image": "<string>",
    "traits": {},
    "rarity_score": 123,
    "rarity_rank": 123,
    "price": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "highest_bid": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "last_sale": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "last_cost_basis": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "owner": {
      "address": "<string>",
      "@type": "BlurTrader",
      "username": "<string>"
    },
    "owner_owned_count": 123,
    "is_suspicious": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
collection
string
required

Collection slug (e.g. 'azuki') or its on-chain contract address

Minimum string length: 1
Examples:

"azuki"

"0xed5af388653567af2f388e6224dc7c4b3241c544"

token_id
string
required

Token id within the collection (e.g. '1003')

Minimum string length: 1
Examples:

"1003"

"415"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

token_id
string
required
@type
string
default:BlurToken
name
string | null
image
string | null
traits
object
rarity_score
number | null
rarity_rank
integer | null
price
object
highest_bid
object
last_sale
object
last_cost_basis
object
owner
object
owner_owned_count
integer | null
is_suspicious
boolean
default:false