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

# /ozon/products

> Get one Ozon (ozon.ru) product by SKU or product URL: title, Ozon-card price, price without the card, struck-through original price and discount percent, availability and units in stock, rating and review count, brand and category path, gallery images and videos, the selling shop with its rating, lifetime order count and legal entity, the full specification table, the seller description with its images, package contents, colour and memory variants pointing at their own SKUs, and the number of competing seller offers.

**Price:** 1 credit

**⚠️ Common errors:** 412: No such Ozon product: the SKU does not exist, or the id belongs to a seller rather than a product., 422: The input carries no Ozon product SKU.



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/ozon/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/ozon/products:
    post:
      tags:
        - /ozon
      summary: /ozon/products
      description: >-
        Get one Ozon (ozon.ru) product by SKU or product URL: title, Ozon-card
        price, price without the card, struck-through original price and
        discount percent, availability and units in stock, rating and review
        count, brand and category path, gallery images and videos, the selling
        shop with its rating, lifetime order count and legal entity, the full
        specification table, the seller description with its images, package
        contents, colour and memory variants pointing at their own SKUs, and the
        number of competing seller offers.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No such Ozon product: the SKU does not exist,
        or the id belongs to a seller rather than a product., 422: The input
        carries no Ozon product SKU.
      operationId: __api_ozon_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OzonProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OzonProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OzonProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    OzonProduct:
      properties:
        '@type':
          type: string
          default: OzonProduct
        id:
          type: string
        sku:
          anyOf:
            - type: integer
            - type: 'null'
        product_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_without_card:
          anyOf:
            - type: number
            - type: 'null'
        original_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: RUB
        stock_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        min_order_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_url:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        category_name:
          anyOf:
            - type: string
            - type: 'null'
        category_path:
          items:
            type: string
          type: array
          default: []
        category_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        videos:
          items:
            type: string
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/OzonProductSeller'
            - type: 'null'
        other_offers_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_brand_certified:
          anyOf:
            - type: boolean
            - type: 'null'
        marketing_labels:
          items:
            type: string
          type: array
          default: []
        characteristics:
          items:
            $ref: '#/components/schemas/OzonCharacteristic'
          type: array
          default: []
        aspects:
          items:
            $ref: '#/components/schemas/OzonAspect'
          type: array
          default: []
        description_images:
          items:
            type: string
          type: array
          default: []
        package_contents:
          anyOf:
            - type: string
            - type: 'null'
        delivery_region:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    OzonProductSeller:
      properties:
        '@type':
          type: string
          default: OzonProductSeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        orders_count:
          anyOf:
            - type: string
            - type: 'null'
        legal_name:
          anyOf:
            - type: string
            - type: 'null'
        legal_address:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    OzonCharacteristic:
      properties:
        '@type':
          type: string
          default: OzonCharacteristic
        key:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        values:
          items:
            type: string
          type: array
          default: []
      type: object
    OzonAspect:
      properties:
        '@type':
          type: string
          default: OzonAspect
        key:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        variants:
          items:
            $ref: '#/components/schemas/OzonVariant'
          type: array
          default: []
      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
    OzonVariant:
      properties:
        '@type':
          type: string
          default: OzonVariant
        sku:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        original_price:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````