Skip to main content
POST
/
api
/
magiceden
/
collections
/
stats
/magiceden/collections/stats
curl --request POST \
  --url https://api.anysite.io/api/magiceden/collections/stats \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300,
  "chain": "solana"
}
'
[
  {
    "symbol": "<string>",
    "@type": "MagicedenCollectionStats",
    "floor_price": 123,
    "listed_count": 123,
    "highest_offer": 123,
    "volume_24h": 123,
    "volume_7d": 123,
    "volume_30d": 123,
    "volume_all": 123,
    "sales_24h": 123,
    "sales_7d": 123,
    "sales_30d": 123,
    "avg_price_24h": 123,
    "floor_change_24h": 123,
    "floor_change_7d": 123,
    "floor_change_30d": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Collection symbol (its human-readable alias, e.g. 'mad_lads')

Minimum string length: 1
Examples:

"mad_lads"

"okay_bears"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
chain
enum<string>
default:solana

Blockchain

Available options:
solana

Response

Successful Response

symbol
string
required
@type
string
default:MagicedenCollectionStats
floor_price
number | null
listed_count
integer | null
highest_offer
number | null
volume_24h
number | null
volume_7d
number | null
volume_30d
number | null
volume_all
number | null
sales_24h
integer | null
sales_7d
integer | null
sales_30d
integer | null
avg_price_24h
number | null
floor_change_24h
number | null
floor_change_7d
number | null
floor_change_30d
number | null