Skip to main content
POST
/
api
/
blur
/
collections
/
bids
/blur/collections/bids
curl --request POST \
  --url https://api.anysite.io/api/blur/collections/bids \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "collection": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "BlurBidLevel",
    "price": 123,
    "executable_size": 123,
    "bidder_count": 123,
    "criteria_type": "<string>",
    "bidder_addresses": []
  }
]

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 bid price levels to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:BlurBidLevel
price
number | null
executable_size
integer | null
bidder_count
integer | null
criteria_type
string | null
bidder_addresses
string[]