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

# /asos/products

> Get full ASOS product details by product ID (or product URL): title, brand, price, list_price, currency, save_percent, stock, fit type, save count, images, catwalk video, description, rating and per-star breakdown, sub-ratings (fit/quality), review summary and recent reviews, available sizes and colour variants.

**Price:** 10 credits per 72 results

**⚠️ Common errors:** 412: Product not found (well-formed but nonexistent product ID)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/asos/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/asos/products:
    post:
      tags:
        - /asos
      summary: /asos/products
      description: >-
        Get full ASOS product details by product ID (or product URL): title,
        brand, price, list_price, currency, save_percent, stock, fit type, save
        count, images, catwalk video, description, rating and per-star
        breakdown, sub-ratings (fit/quality), review summary and recent reviews,
        available sizes and colour variants.


        **Price:** 10 credits per 72 results


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent product ID)
      operationId: __api_asos_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AsosProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AsosProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AsosProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    AsosProduct:
      properties:
        '@type':
          type: string
          default: AsosProduct
        id:
          type: string
        product_code:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: integer
            - type: 'null'
        gender:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        fit_type:
          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: integer
            - type: 'null'
        is_on_sale:
          anyOf:
            - type: boolean
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        is_selling_fast:
          anyOf:
            - type: boolean
            - type: 'null'
        save_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        video_url:
          anyOf:
            - type: string
            - type: 'null'
        country_of_manufacture:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        recommended_percentage:
          anyOf:
            - type: integer
            - type: 'null'
        rating_distribution:
          items:
            $ref: '#/components/schemas/AsosProductRatingDistribution'
          type: array
          default: []
        sub_ratings:
          items:
            $ref: '#/components/schemas/AsosProductSubRating'
          type: array
          default: []
        reviews_summary:
          anyOf:
            - type: string
            - type: 'null'
        reviews:
          items:
            $ref: '#/components/schemas/AsosProductEmbeddedReview'
          type: array
          default: []
        sizes:
          items:
            $ref: '#/components/schemas/AsosProductSize'
          type: array
          default: []
        colours:
          items:
            $ref: '#/components/schemas/AsosProductColour'
          type: array
          default: []
        total_colour_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AsosProductRatingDistribution:
      properties:
        '@type':
          type: string
          default: AsosProductRatingDistribution
        rating:
          type: integer
        count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - rating
    AsosProductSubRating:
      properties:
        '@type':
          type: string
          default: AsosProductSubRating
        name:
          type: string
        min_label:
          anyOf:
            - type: string
            - type: 'null'
        max_label:
          anyOf:
            - type: string
            - type: 'null'
        percentage:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    AsosProductEmbeddedReview:
      properties:
        '@type':
          type: string
          default: AsosProductEmbeddedReview
        id:
          type: string
        rating:
          anyOf:
            - type: integer
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        submitted_recency:
          anyOf:
            - type: string
            - type: 'null'
        is_verified_purchaser:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
    AsosProductSize:
      properties:
        '@type':
          type: string
          default: AsosProductSize
        id:
          type: string
        size:
          anyOf:
            - type: string
            - type: 'null'
        brand_size:
          anyOf:
            - type: string
            - type: 'null'
        sku:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        is_low_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
    AsosProductColour:
      properties:
        '@type':
          type: string
          default: AsosProductColour
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - 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

````