> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /opensea/collections

> Get an OpenSea NFT collection by its slug

**Price:** 1 credit

**💡 AI Hint:** Get the full profile of an OpenSea NFT collection by its slug (e.g. 'boredapeyachtclub'). Returns the name, description, image and banner, category, blockchain and contract address, token standard, social links (external url, twitter, instagram, discord), verification status, owner, creation date, current floor price and top offer (in native, token and USD), and rolling stats (owner count, total supply, listed count, and volume/sales/floor-price change across the 1h, 1d, 7d and 30d windows). Use the 'collections/search' endpoint to discover collection slugs.

**⚠️ Common errors:** 412: Collection not found



## OpenAPI

````yaml /openapi-filtered.json post /api/opensea/collections
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/opensea/collections:
    post:
      tags:
        - /opensea
      summary: /opensea/collections
      description: >-
        Get an OpenSea NFT collection by its slug


        **Price:** 1 credit


        **💡 AI Hint:** Get the full profile of an OpenSea NFT collection by its
        slug (e.g. 'boredapeyachtclub'). Returns the name, description, image
        and banner, category, blockchain and contract address, token standard,
        social links (external url, twitter, instagram, discord), verification
        status, owner, creation date, current floor price and top offer (in
        native, token and USD), and rolling stats (owner count, total supply,
        listed count, and volume/sales/floor-price change across the 1h, 1d, 7d
        and 30d windows). Use the 'collections/search' endpoint to discover
        collection slugs.


        **⚠️ Common errors:** 412: Collection not found
      operationId: __api_opensea_collections_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenseaCollectionPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OpenseaCollection'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OpenseaCollectionPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        slug:
          type: string
          minLength: 1
          description: Collection slug (its human-readable alias from the collection URL)
          examples:
            - boredapeyachtclub
            - pudgypenguins
            - azuki
      type: object
      required:
        - slug
    OpenseaCollection:
      properties:
        '@type':
          type: string
          default: OpenseaCollection
        slug:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        banner:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        chain:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        standard:
          anyOf:
            - type: string
            - type: 'null'
        external_url:
          anyOf:
            - type: string
            - type: 'null'
        twitter:
          anyOf:
            - type: string
            - type: 'null'
        instagram:
          anyOf:
            - type: string
            - type: 'null'
        discord:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        is_offers_enabled:
          type: boolean
          default: false
        is_rarity_disabled:
          type: boolean
          default: false
        owner:
          anyOf:
            - type: string
            - type: 'null'
        owner_name:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        floor_price:
          anyOf:
            - $ref: '#/components/schemas/OpenseaPrice'
            - type: 'null'
        top_offer:
          anyOf:
            - $ref: '#/components/schemas/OpenseaPrice'
            - type: 'null'
        stats:
          anyOf:
            - $ref: '#/components/schemas/OpenseaCollectionStats'
            - type: 'null'
      type: object
      required:
        - slug
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    OpenseaPrice:
      properties:
        '@type':
          type: string
          default: OpenseaPrice
        usd:
          anyOf:
            - type: number
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
        symbol:
          anyOf:
            - type: string
            - type: 'null'
        native:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    OpenseaCollectionStats:
      properties:
        '@type':
          type: string
          default: OpenseaCollectionStats
        owner_count:
          anyOf:
            - type: integer
            - type: 'null'
        sales:
          anyOf:
            - type: integer
            - type: 'null'
        total_supply:
          anyOf:
            - type: integer
            - type: 'null'
        unique_item_count:
          anyOf:
            - type: integer
            - type: 'null'
        listed_item_count:
          anyOf:
            - type: integer
            - type: 'null'
        volume_usd:
          anyOf:
            - type: number
            - type: 'null'
        volume_native:
          anyOf:
            - type: number
            - type: 'null'
        one_hour:
          anyOf:
            - $ref: '#/components/schemas/OpenseaWindowStats'
            - type: 'null'
        one_day:
          anyOf:
            - $ref: '#/components/schemas/OpenseaWindowStats'
            - type: 'null'
        seven_days:
          anyOf:
            - $ref: '#/components/schemas/OpenseaWindowStats'
            - type: 'null'
        thirty_days:
          anyOf:
            - $ref: '#/components/schemas/OpenseaWindowStats'
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
    OpenseaWindowStats:
      properties:
        '@type':
          type: string
          default: OpenseaWindowStats
        volume_usd:
          anyOf:
            - type: number
            - type: 'null'
        volume_native:
          anyOf:
            - type: number
            - type: 'null'
        sales:
          anyOf:
            - type: integer
            - type: 'null'
        floor_price_change:
          anyOf:
            - type: number
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````