Skip to main content
POST
/
api
/
opensea
/
collections
/opensea/collections
curl --request POST \
  --url https://api.anysite.io/api/opensea/collections \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "slug": "<string>",
  "timeout": 300
}
'
[
  {
    "slug": "<string>",
    "@type": "OpenseaCollection",
    "name": "<string>",
    "description": "<string>",
    "image": "<string>",
    "banner": "<string>",
    "category": "<string>",
    "chain": "<string>",
    "address": "<string>",
    "standard": "<string>",
    "external_url": "<string>",
    "twitter": "<string>",
    "instagram": "<string>",
    "discord": "<string>",
    "is_verified": false,
    "is_offers_enabled": false,
    "is_rarity_disabled": false,
    "owner": "<string>",
    "owner_name": "<string>",
    "created_at": "<string>",
    "floor_price": {
      "@type": "OpenseaPrice",
      "usd": 123,
      "amount": 123,
      "symbol": "<string>",
      "native": 123
    },
    "top_offer": {
      "@type": "OpenseaPrice",
      "usd": 123,
      "amount": 123,
      "symbol": "<string>",
      "native": 123
    },
    "stats": {
      "@type": "OpenseaCollectionStats",
      "owner_count": 123,
      "sales": 123,
      "total_supply": 123,
      "unique_item_count": 123,
      "listed_item_count": 123,
      "volume_usd": 123,
      "volume_native": 123,
      "one_hour": {
        "@type": "OpenseaWindowStats",
        "volume_usd": 123,
        "volume_native": 123,
        "sales": 123,
        "floor_price_change": 123
      },
      "one_day": {
        "@type": "OpenseaWindowStats",
        "volume_usd": 123,
        "volume_native": 123,
        "sales": 123,
        "floor_price_change": 123
      },
      "seven_days": {
        "@type": "OpenseaWindowStats",
        "volume_usd": 123,
        "volume_native": 123,
        "sales": 123,
        "floor_price_change": 123
      },
      "thirty_days": {
        "@type": "OpenseaWindowStats",
        "volume_usd": 123,
        "volume_native": 123,
        "sales": 123,
        "floor_price_change": 123
      }
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
slug
string
required

Collection slug (its human-readable alias from the collection URL)

Minimum string length: 1
Examples:

"boredapeyachtclub"

"pudgypenguins"

"azuki"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

slug
string
required
@type
string
default:OpenseaCollection
name
string | null
description
string | null
image
string | null
banner
string | null
category
string | null
chain
string | null
address
string | null
standard
string | null
external_url
string | null
twitter
string | null
instagram
string | null
discord
string | null
is_verified
boolean
default:false
is_offers_enabled
boolean
default:false
is_rarity_disabled
boolean
default:false
owner
string | null
owner_name
string | null
created_at
string | null
floor_price
object
top_offer
object
stats
object