> ## 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/categories/products

> List products in a Hepsiburada category (by id or category URL) with filters (brand, seller, color, price range, minimum rating, fast delivery, discounted, photo reviews, authorized sellers) and sorting. Returns product cards: id, name, brand, price, list_price, discount, image, rating and seller.

**Price:** 20 credits per 36 results

**⚠️ Common errors:** 412: Category not found (well-formed but nonexistent category id, or category has no products)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/hepsiburada/categories/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/categories/products:
    post:
      tags:
        - /hepsiburada
      summary: /hepsiburada/categories/products
      description: >-
        List products in a Hepsiburada category (by id or category URL) with
        filters (brand, seller, color, price range, minimum rating, fast
        delivery, discounted, photo reviews, authorized sellers) and sorting.
        Returns product cards: id, name, brand, price, list_price, discount,
        image, rating and seller.


        **Price:** 20 credits per 36 results


        **⚠️ Common errors:** 412: Category not found (well-formed but
        nonexistent category id, or category has no products)
      operationId: __api_hepsiburada_categories_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HepsiburadaCategoryProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HepsiburadaSearchProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HepsiburadaCategoryProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        sort:
          $ref: '#/components/schemas/HepsiburadaSort'
          default: NONE
        brand:
          anyOf:
            - type: string
            - type: 'null'
        merchant:
          anyOf:
            - type: string
            - type: 'null'
        color:
          anyOf:
            - $ref: '#/components/schemas/HepsiburadaColor'
            - type: 'null'
        rating_min:
          anyOf:
            - $ref: '#/components/schemas/HepsiburadaRating'
            - type: 'null'
        price_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        fast_delivery:
          type: boolean
          default: false
        discounted_only:
          type: boolean
          default: false
        with_photo_reviews:
          type: boolean
          default: false
        authorized_seller:
          type: boolean
          default: false
        recently_reviewed:
          type: boolean
          default: false
        advantageous_price:
          type: boolean
          default: false
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        category:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - category
        - count
    HepsiburadaSearchProduct:
      properties:
        '@type':
          type: string
          default: HepsiburadaSearchProduct
        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'
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_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'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        color_variant_count:
          anyOf:
            - type: integer
            - type: 'null'
        seller_name:
          anyOf:
            - type: string
            - type: 'null'
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HepsiburadaSort:
      type: string
      enum:
        - NONE
        - artanfiyat
        - azalanfiyat
        - coksatan
        - yorumsayisi
        - degerlendirmepuani
        - indirimurunler
        - enyeni
    HepsiburadaColor:
      type: string
      enum:
        - Siyah
        - Beyaz
        - Mavi
        - Lacivert
        - Mor
        - Kırmızı
        - Yeşil
        - Sarı
        - Pembe
        - Gri
        - Gümüş
        - Kahverengi
        - Turuncu
        - Bej
        - Krem
        - Altın
        - CokRenk
    HepsiburadaRating:
      type: string
      enum:
        - 4.5-max
        - 4-max
        - 3-max
    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

````