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

# /falabella/products/search

> Search Falabella products by keyword or category id, with filters (brand, seller, condition, color, price range, discount, rating, free shipping, CMR offer) and sorting. Returns product cards with id, name, brand, price, rating, seller and image. Use the region field for Chile (cl), Peru (pe) or Colombia (co).

**Price:** 20 credits per 48 results



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/falabella/products/search
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/falabella/products/search:
    post:
      tags:
        - /falabella
      summary: /falabella/products/search
      description: >-
        Search Falabella products by keyword or category id, with filters
        (brand, seller, condition, color, price range, discount, rating, free
        shipping, CMR offer) and sorting. Returns product cards with id, name,
        brand, price, rating, seller and image. Use the region field for Chile
        (cl), Peru (pe) or Colombia (co).


        **Price:** 20 credits per 48 results
      operationId: __api_falabella_products_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FalabellaProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FalabellaSearchProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FalabellaProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/FalabellaRegion'
          default: cl
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/FalabellaSort'
          default: recommended
        brand:
          anyOf:
            - type: string
            - type: 'null'
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - $ref: '#/components/schemas/FalabellaCondition'
            - type: 'null'
        color:
          anyOf:
            - $ref: '#/components/schemas/FalabellaColor'
            - type: 'null'
        min_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_discount:
          anyOf:
            - type: integer
              maximum: 100
              minimum: 1
            - type: 'null'
        min_rating:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 1
            - type: 'null'
        free_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        cmr_offer:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - count
    FalabellaSearchProduct:
      properties:
        '@type':
          type: string
          default: FalabellaSearchProduct
        id:
          type: string
        sku_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        event_price:
          anyOf:
            - type: number
            - type: 'null'
        normal_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        discount_label:
          anyOf:
            - type: string
            - type: 'null'
        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'
        offering_id:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        is_sponsored:
          type: boolean
          default: false
        is_best_seller:
          type: boolean
          default: false
        is_verified_seller:
          type: boolean
          default: false
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FalabellaRegion:
      type: string
      enum:
        - cl
        - pe
        - co
    FalabellaSort:
      type: string
      enum:
        - recommended
        - price_asc
        - price_desc
        - best_rated
        - brand
    FalabellaCondition:
      type: string
      enum:
        - new
        - open_box
        - refurbished_excellent
        - refurbished_very_good
        - refurbished_good
    FalabellaColor:
      type: string
      enum:
        - yellow
        - blue
        - beige
        - white
        - burgundy
        - brown
        - gold
        - gray
        - purple
        - orange
        - black
        - silver
        - red
        - pink
        - green
    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

````