Skip to main content
POST
/
api
/
opensea
/
collections
/
search
/opensea/collections/search
curl --request POST \
  --url https://api.anysite.io/api/opensea/collections/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "tab": "trending",
  "timeframe": "one_day"
}
'
[
  {
    "slug": "<string>",
    "@type": "OpenseaCollectionRank",
    "name": "<string>",
    "image": "<string>",
    "chain": "<string>",
    "is_verified": false,
    "score": 123,
    "metadata_storage": "<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
count
integer
required

Number of collections to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
tab
enum<string>
default:trending

Ranking tab to browse

Available options:
trending,
top
timeframe
enum<string>
default:one_day

Time window for the ranking metrics

Available options:
one_minute,
five_minute,
fifteen_minute,
one_hour,
one_day,
seven_days,
thirty_days,
all
category
enum<string> | null

Restrict the ranking to a single category

Available options:
art,
gaming,
memberships,
music,
photography,
domain_names,
sports_collectibles,
physical_collectibles,
virtual_worlds,
pfps

Response

Successful Response

slug
string
required
@type
string
default:OpenseaCollectionRank
name
string | null
image
string | null
chain
string | null
is_verified
boolean
default:false
score
number | null
metadata_storage
string | null
created_at
string | null
floor_price
object
top_offer
object
stats
object