> ## 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.

# /target/products

> Get full Target product details by TCIN (or product URL): title, brand, price, list_price, images, video, rating and per-star breakdown, secondary ratings, review and question counts, specifications, features, breadcrumbs, return policies, color/style variants and shipping.

**Price:** 5 credits

**⚠️ Common errors:** 412: Product not found (well-formed but nonexistent TCIN, or no product data for it)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/target/products
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/target/products:
    post:
      tags:
        - /target
      summary: /target/products
      description: >-
        Get full Target product details by TCIN (or product URL): title, brand,
        price, list_price, images, video, rating and per-star breakdown,
        secondary ratings, review and question counts, specifications, features,
        breadcrumbs, return policies, color/style variants and shipping.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent TCIN, or no product data for it)
      operationId: __api_target_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TargetProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TargetProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TargetProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    TargetProduct:
      properties:
        '@type':
          type: string
          default: TargetProduct
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        save_percent:
          anyOf:
            - type: number
            - type: 'null'
        is_on_sale:
          anyOf:
            - type: boolean
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        videos:
          items:
            $ref: '#/components/schemas/TargetProductVideo'
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        question_count:
          anyOf:
            - type: integer
            - type: 'null'
        recommended_percentage:
          anyOf:
            - type: integer
            - type: 'null'
        rating_five_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_four_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_three_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_two_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_one_count:
          anyOf:
            - type: integer
            - type: 'null'
        secondary_ratings:
          items:
            $ref: '#/components/schemas/TargetProductSecondaryRating'
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/TargetProductSpecification'
          type: array
          default: []
        features:
          items:
            type: string
          type: array
          default: []
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        item_type:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        import_designation:
          anyOf:
            - type: string
            - type: 'null'
        is_free_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        return_policies:
          items:
            $ref: '#/components/schemas/TargetProductReturnPolicy'
          type: array
          default: []
        variants:
          items:
            $ref: '#/components/schemas/TargetProductVariant'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TargetProductVideo:
      properties:
        '@type':
          type: string
          default: TargetProductVideo
        url:
          type: string
        poster_image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - url
    TargetProductSecondaryRating:
      properties:
        '@type':
          type: string
          default: TargetProductSecondaryRating
        name:
          type: string
        value:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    TargetProductSpecification:
      properties:
        '@type':
          type: string
          default: TargetProductSpecification
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    TargetProductReturnPolicy:
      properties:
        '@type':
          type: string
          default: TargetProductReturnPolicy
        user_type:
          anyOf:
            - type: string
            - type: 'null'
        day_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    TargetProductVariant:
      properties:
        '@type':
          type: string
          default: TargetProductVariant
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        swatch_image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - id
    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

````