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

# /blibli/sellers/products

> List products from a Blibli merchant's storefront (by merchant code or merchant URL) with sort. Returns product cards: name, brand, price, list_price, discount, images, rating, review_count, badge, location, sold_count, variant and category.

**Price:** 5 credits per 40 results

**⚠️ Common errors:** 412: Seller not found (well-formed but nonexistent merchant code, or storefront has no products)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/blibli/sellers/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/blibli/sellers/products:
    post:
      tags:
        - /blibli
      summary: /blibli/sellers/products
      description: >-
        List products from a Blibli merchant's storefront (by merchant code or
        merchant URL) with sort. Returns product cards: name, brand, price,
        list_price, discount, images, rating, review_count, badge, location,
        sold_count, variant and category.


        **Price:** 5 credits per 40 results


        **⚠️ Common errors:** 412: Seller not found (well-formed but nonexistent
        merchant code, or storefront has no products)
      operationId: __api_blibli_sellers_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BlibliSellerProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BlibliProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BlibliSellerProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        seller:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/BlibliSort'
          default: relevance
      type: object
      required:
        - seller
        - count
    BlibliProductCard:
      properties:
        '@type':
          type: string
          default: BlibliProductCard
        id:
          type: string
        sku:
          type: string
        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: integer
            - type: 'null'
        is_price_range:
          anyOf:
            - type: boolean
            - type: 'null'
        currency:
          type: string
          default: IDR
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        seller_name:
          anyOf:
            - type: string
            - type: 'null'
        is_official_merchant:
          anyOf:
            - type: boolean
            - type: 'null'
        is_official_brand:
          anyOf:
            - type: boolean
            - type: 'null'
        merchant_badge:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        location_count:
          anyOf:
            - type: integer
            - type: 'null'
        sold_count:
          anyOf:
            - type: integer
            - type: 'null'
        item_sku:
          anyOf:
            - type: string
            - type: 'null'
        variant:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_hierarchy:
          items:
            type: string
          type: array
          default: []
        is_buyable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_preorder:
          anyOf:
            - type: boolean
            - type: 'null'
        delivery_estimate:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - sku
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BlibliSort:
      type: string
      enum:
        - relevance
        - best_selling
        - cheapest
        - expensive
        - popular
        - newest
        - nearby
    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

````