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

# /hepsiburada/products

> Get full Hepsiburada product details by SKU, product group id or product URL: name, brand, price, list_price, price range, discount, images, video, rating, stock, attributes (specs), variants (color/storage options with per-variant price and stock), category breadcrumbs, the winning seller and other sellers offering the same product.

**Price:** 20 credits

**⚠️ Common errors:** 412: Product not found (well-formed but nonexistent SKU/product id, or page has no product)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/hepsiburada/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/hepsiburada/products:
    post:
      tags:
        - /hepsiburada
      summary: /hepsiburada/products
      description: >-
        Get full Hepsiburada product details by SKU, product group id or product
        URL: name, brand, price, list_price, price range, discount, images,
        video, rating, stock, attributes (specs), variants (color/storage
        options with per-variant price and stock), category breadcrumbs, the
        winning seller and other sellers offering the same product.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent SKU/product id, or page has no product)
      operationId: __api_hepsiburada_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HepsiburadaProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HepsiburadaProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HepsiburadaProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    HepsiburadaProduct:
      properties:
        '@type':
          type: string
          default: HepsiburadaProduct
        id:
          type: string
        product_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        min_price:
          anyOf:
            - type: number
            - type: 'null'
        max_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percentage:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        video:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        stock_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        barcode:
          anyOf:
            - type: string
            - type: 'null'
        catalog_name:
          anyOf:
            - type: string
            - type: 'null'
        definition_name:
          anyOf:
            - type: string
            - type: 'null'
        energy_class:
          anyOf:
            - type: string
            - type: 'null'
        tax_vat_rate:
          anyOf:
            - type: integer
            - type: 'null'
        is_bundle:
          anyOf:
            - type: boolean
            - type: 'null'
        is_pre_order:
          anyOf:
            - type: boolean
            - type: 'null'
        is_adult_product:
          anyOf:
            - type: boolean
            - type: 'null'
        shipment_day:
          anyOf:
            - type: integer
            - type: 'null'
        has_free_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        has_fast_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        categories:
          items:
            $ref: '#/components/schemas/HepsiburadaProductCategory'
          type: array
          default: []
        attributes:
          items:
            $ref: '#/components/schemas/HepsiburadaProductAttribute'
          type: array
          default: []
        variants:
          items:
            $ref: '#/components/schemas/HepsiburadaProductVariant'
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/HepsiburadaProductSeller'
            - type: 'null'
        other_seller_count:
          anyOf:
            - type: integer
            - type: 'null'
        other_sellers:
          items:
            $ref: '#/components/schemas/HepsiburadaProductOffer'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HepsiburadaProductCategory:
      properties:
        '@type':
          type: string
          default: HepsiburadaProductCategory
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        level:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    HepsiburadaProductAttribute:
      properties:
        '@type':
          type: string
          default: HepsiburadaProductAttribute
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
        group:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    HepsiburadaProductVariant:
      properties:
        '@type':
          type: string
          default: HepsiburadaProductVariant
        sku:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        is_default:
          anyOf:
            - type: boolean
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        is_pre_order:
          anyOf:
            - type: boolean
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        barcode:
          anyOf:
            - type: string
            - type: 'null'
        options:
          items:
            $ref: '#/components/schemas/HepsiburadaProductAttribute'
          type: array
          default: []
      type: object
      required:
        - sku
    HepsiburadaProductSeller:
      properties:
        '@type':
          type: string
          default: HepsiburadaProductSeller
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HepsiburadaProductOffer:
      properties:
        '@type':
          type: string
          default: HepsiburadaProductOffer
        seller_id:
          type: string
        seller_name:
          anyOf:
            - type: string
            - type: 'null'
        seller_alias:
          anyOf:
            - type: string
            - type: 'null'
        listing_id:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        has_free_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        has_fast_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        is_winner:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - seller_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

````