> ## 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/items

> Get an OpenSea NFT by its chain, contract address and token id

**Price:** 1 credit

**💡 AI Hint:** Get the full details of a single OpenSea NFT identified by its chain, contract address and token id. Returns the name, image and animation, description, token standard, total supply, rarity rank and category, metadata storage, owner, last sale, parent collection (slug, name, image, category, floor price), the best current listing and best offer (price in native, token and USD with marketplace, maker and expiry), transfer-lock and enforcement flags, and the full list of traits with each trait's rarity (item count and percent), floor price and top offer price.

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



## OpenAPI

````yaml /openapi-filtered.json post /api/opensea/items
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/items:
    post:
      tags:
        - /opensea
      summary: /opensea/items
      description: >-
        Get an OpenSea NFT by its chain, contract address and token id


        **Price:** 1 credit


        **💡 AI Hint:** Get the full details of a single OpenSea NFT identified
        by its chain, contract address and token id. Returns the name, image and
        animation, description, token standard, total supply, rarity rank and
        category, metadata storage, owner, last sale, parent collection (slug,
        name, image, category, floor price), the best current listing and best
        offer (price in native, token and USD with marketplace, maker and
        expiry), transfer-lock and enforcement flags, and the full list of
        traits with each trait's rarity (item count and percent), floor price
        and top offer price.


        **⚠️ Common errors:** 412: Item not found
      operationId: __api_opensea_items_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OpenseaItemPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OpenseaItemDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OpenseaItemPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        chain:
          $ref: '#/components/schemas/OpenseaChain'
          description: Blockchain the NFT lives on
          default: ethereum
        contract_address:
          type: string
          minLength: 1
          description: NFT contract address
          examples:
            - '0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d'
        token_id:
          type: string
          minLength: 1
          description: Token id within the contract
          examples:
            - '1'
            - '2438'
      type: object
      required:
        - contract_address
        - token_id
    OpenseaItemDetail:
      properties:
        '@type':
          type: string
          default: OpenseaItemDetail
        chain:
          anyOf:
            - type: string
            - type: 'null'
        contract_address:
          type: string
        token_id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        animation_url:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        is_fungible:
          type: boolean
          default: false
        standard:
          anyOf:
            - type: string
            - type: 'null'
        total_supply:
          anyOf:
            - type: integer
            - type: 'null'
        rarity_rank:
          anyOf:
            - type: integer
            - type: 'null'
        rarity_category:
          anyOf:
            - type: string
            - type: 'null'
        background_color:
          anyOf:
            - type: string
            - type: 'null'
        token_uri:
          anyOf:
            - type: string
            - type: 'null'
        metadata_storage:
          anyOf:
            - type: string
            - type: 'null'
        is_transfer_locked:
          type: boolean
          default: false
        is_compromised:
          type: boolean
          default: false
        is_disabled:
          type: boolean
          default: false
        external_url:
          anyOf:
            - type: string
            - type: 'null'
        collection:
          anyOf:
            - $ref: '#/components/schemas/OpenseaItemCollection'
            - type: 'null'
        owner:
          anyOf:
            - type: string
            - type: 'null'
        last_sale:
          anyOf:
            - $ref: '#/components/schemas/OpenseaPrice'
            - type: 'null'
        best_listing:
          anyOf:
            - $ref: '#/components/schemas/OpenseaListing'
            - type: 'null'
        best_offer:
          anyOf:
            - $ref: '#/components/schemas/OpenseaListing'
            - type: 'null'
        attributes:
          items:
            $ref: '#/components/schemas/OpenseaItemAttribute'
          type: array
          default: []
      type: object
      required:
        - contract_address
        - token_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    OpenseaChain:
      type: string
      enum:
        - ethereum
        - base
        - solana
        - arbitrum
        - optimism
        - polygon
        - abstract
        - monad
        - ink
        - apechain
        - megaeth
        - soneium
        - somnia
        - animechain
        - avalanche
        - b3
        - berachain
        - blast
        - flow
        - gunz
        - ronin
        - sei
        - shape
        - unichain
        - zora
        - hyperevm
    OpenseaItemCollection:
      properties:
        '@type':
          type: string
          default: OpenseaItemCollection
        slug:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        external_url:
          anyOf:
            - type: string
            - type: 'null'
        standard:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        floor_price:
          anyOf:
            - $ref: '#/components/schemas/OpenseaPrice'
            - type: 'null'
      type: object
      required:
        - slug
    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
    OpenseaListing:
      properties:
        '@type':
          type: string
          default: OpenseaListing
        price:
          anyOf:
            - $ref: '#/components/schemas/OpenseaPrice'
            - type: 'null'
        marketplace:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        quantity_remaining:
          anyOf:
            - type: integer
            - type: 'null'
        start_time:
          anyOf:
            - type: string
            - type: 'null'
        end_time:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    OpenseaItemAttribute:
      properties:
        '@type':
          type: string
          default: OpenseaItemAttribute
        trait_type:
          type: string
        value:
          type: string
        is_numeric:
          type: boolean
          default: false
        floor_price:
          anyOf:
            - $ref: '#/components/schemas/OpenseaPrice'
            - type: 'null'
        top_offer_price:
          anyOf:
            - $ref: '#/components/schemas/OpenseaPrice'
            - type: 'null'
        item_count:
          anyOf:
            - type: integer
            - type: 'null'
        percent:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - trait_type
        - value
    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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````