Skip to main content
POST
/
api
/
blur
/
collections
/blur/collections
curl --request POST \
  --url https://api.anysite.io/api/blur/collections \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "collection": "<string>",
  "timeout": 300
}
'
[
  {
    "contract_address": "<string>",
    "@type": "BlurCollection",
    "name": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "total_supply": 123,
    "owner_count": 123,
    "floor_price": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "floor_price_1d": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "floor_price_7d": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "volume_15m": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "volume_1d": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "volume_7d": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "best_collection_bid": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "total_collection_bid_value": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "best_collection_loan_offer": {
      "@type": "BlurPrice",
      "amount": 123,
      "unit": "<string>",
      "listed_at": "<string>",
      "marketplace": "<string>"
    },
    "trait_frequencies": {}
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
collection
string
required

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

Minimum string length: 1
Examples:

"azuki"

"0xed5af388653567af2f388e6224dc7c4b3241c544"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

contract_address
string
required
@type
string
default:BlurCollection
name
string | null
alias
string | null
image
string | null
total_supply
integer | null
owner_count
integer | null
floor_price
object
floor_price_1d
object
floor_price_7d
object
volume_15m
object
volume_1d
object
volume_7d
object
best_collection_bid
object
total_collection_bid_value
object
best_collection_loan_offer
object
trait_frequencies
object