Skip to main content
POST
/
api
/
blur
/
collections
/
traits
/blur/collections/traits
curl --request POST \
  --url https://api.anysite.io/api/blur/collections/traits \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "collection": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "category": "<string>",
    "value": "<string>",
    "@type": "BlurTrait",
    "sale": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "floor": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "best_bid_price": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "total_bid_value": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    }
  }
]

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"

count
integer
required

Number of trait values to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

category
string
required
value
string
required
@type
string
default:BlurTrait
sale
object
floor
object
best_bid_price
object
total_bid_value
object