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

> Get full Falabella product details by product id (or product URL): name, brand, description, price (CMR/event/normal), specifications, variants with per-seller offerings and stock, seller info, images, breadcrumbs, warranty and return policy. Use the region field for Chile (cl), Peru (pe) or Colombia (co).

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed id but the product does not exist in this region)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/falabella/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/falabella/products:
    post:
      tags:
        - /falabella
      summary: /falabella/products
      description: >-
        Get full Falabella product details by product id (or product URL): name,
        brand, description, price (CMR/event/normal), specifications, variants
        with per-seller offerings and stock, seller info, images, breadcrumbs,
        warranty and return policy. Use the region field for Chile (cl), Peru
        (pe) or Colombia (co).


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed id but the
        product does not exist in this region)
      operationId: __api_falabella_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FalabellaProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FalabellaProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FalabellaProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/FalabellaRegion'
          default: cl
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    FalabellaProduct:
      properties:
        '@type':
          type: string
          default: FalabellaProduct
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        gsc_category_id:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        cmr_points:
          anyOf:
            - type: integer
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        event_price:
          anyOf:
            - type: number
            - type: 'null'
        internet_price:
          anyOf:
            - type: number
            - type: 'null'
        normal_price:
          anyOf:
            - type: number
            - type: 'null'
        breadcrumbs:
          items:
            $ref: '#/components/schemas/FalabellaBreadcrumb'
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/FalabellaSpec'
          type: array
          default: []
        top_specifications:
          items:
            $ref: '#/components/schemas/FalabellaSpec'
          type: array
          default: []
        variants:
          items:
            $ref: '#/components/schemas/FalabellaVariant'
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/FalabellaSeller'
            - type: 'null'
        return_policy:
          anyOf:
            - $ref: '#/components/schemas/FalabellaReturnPolicy'
            - type: 'null'
        installments_without_interest:
          items:
            $ref: '#/components/schemas/FalabellaInstallment'
          type: array
          default: []
        warranty_id:
          anyOf:
            - type: string
            - type: 'null'
        product_sites:
          items:
            type: string
          type: array
          default: []
        has_international_shipping:
          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
    FalabellaBreadcrumb:
      properties:
        '@type':
          type: string
          default: FalabellaBreadcrumb
        id:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FalabellaSpec:
      properties:
        '@type':
          type: string
          default: FalabellaSpec
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FalabellaVariant:
      properties:
        '@type':
          type: string
          default: FalabellaVariant
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        cmr_points:
          anyOf:
            - type: integer
            - type: 'null'
        cmr_savings:
          anyOf:
            - type: number
            - type: 'null'
        max_on_cart:
          anyOf:
            - type: integer
            - type: 'null'
        is_purchaseable:
          type: boolean
          default: false
        is_free_shipping:
          type: boolean
          default: false
        discount_label:
          anyOf:
            - type: string
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        prices:
          items:
            $ref: '#/components/schemas/FalabellaPrice'
          type: array
          default: []
        availability:
          items:
            $ref: '#/components/schemas/FalabellaAvailability'
          type: array
          default: []
        offerings:
          items:
            $ref: '#/components/schemas/FalabellaOffering'
          type: array
          default: []
      type: object
      required:
        - id
    FalabellaSeller:
      properties:
        '@type':
          type: string
          default: FalabellaSeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        business_name:
          anyOf:
            - type: string
            - type: 'null'
        reg_number:
          anyOf:
            - type: string
            - type: 'null'
        reg_number_type:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        rating:
          anyOf:
            - $ref: '#/components/schemas/FalabellaSellerRating'
            - type: 'null'
      type: object
    FalabellaReturnPolicy:
      properties:
        '@type':
          type: string
          default: FalabellaReturnPolicy
        header:
          anyOf:
            - type: string
            - type: 'null'
        info:
          anyOf:
            - type: string
            - type: 'null'
        link_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FalabellaInstallment:
      properties:
        '@type':
          type: string
          default: FalabellaInstallment
        installments:
          anyOf:
            - type: integer
            - type: 'null'
        payment_methods:
          items:
            type: string
          type: array
          default: []
        promotion_id:
          anyOf:
            - type: string
            - type: 'null'
      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
    FalabellaPrice:
      properties:
        '@type':
          type: string
          default: FalabellaPrice
        price_type:
          anyOf:
            - type: string
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        is_crossed:
          type: boolean
          default: false
        validity:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FalabellaAvailability:
      properties:
        '@type':
          type: string
          default: FalabellaAvailability
        variant_id:
          anyOf:
            - type: string
            - type: 'null'
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        offering_id:
          anyOf:
            - type: string
            - type: 'null'
        shipping_option_type:
          anyOf:
            - type: string
            - type: 'null'
        state_of_stock:
          anyOf:
            - type: string
            - type: 'null'
        has_stock:
          type: boolean
          default: false
        quantity:
          anyOf:
            - type: integer
            - type: 'null'
        stock_geo_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FalabellaOffering:
      properties:
        '@type':
          type: string
          default: FalabellaOffering
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        seller_name:
          anyOf:
            - type: string
            - type: 'null'
        offering_id:
          anyOf:
            - type: string
            - type: 'null'
        seller_product_status:
          anyOf:
            - type: string
            - type: 'null'
        is_active:
          type: boolean
          default: false
        seller_sku_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FalabellaSellerRating:
      properties:
        '@type':
          type: string
          default: FalabellaSellerRating
        score:
          anyOf:
            - type: number
            - type: 'null'
        ontime:
          anyOf:
            - type: number
            - type: 'null'
        cancellations:
          anyOf:
            - type: number
            - type: 'null'
        customer:
          anyOf:
            - type: number
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````