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

# /takealot/products

> Get full Takealot product details by PLID (or product URL): title, brand, price and list price (ZAR), saving, stock and marketplace flags, rating with 1-5 star distribution, category breadcrumbs, gallery images, description, specifications, bullet points, loyalty prices, financing (credit option), colour/size variants, the marketplace seller (name, rating, review count) when the item is sold by a third party, and competing other offers (New/Used conditions with their own price, stock and seller).

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed but nonexistent PLID)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/takealot/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/takealot/products:
    post:
      tags:
        - /takealot
      summary: /takealot/products
      description: >-
        Get full Takealot product details by PLID (or product URL): title,
        brand, price and list price (ZAR), saving, stock and marketplace flags,
        rating with 1-5 star distribution, category breadcrumbs, gallery images,
        description, specifications, bullet points, loyalty prices, financing
        (credit option), colour/size variants, the marketplace seller (name,
        rating, review count) when the item is sold by a third party, and
        competing other offers (New/Used conditions with their own price, stock
        and seller).


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent PLID)
      operationId: __api_takealot_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TakealotProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TakealotProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TakealotProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    TakealotProduct:
      properties:
        '@type':
          type: string
          default: TakealotProduct
        id:
          type: integer
        plid:
          type: string
        product_title:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        subtitle:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: ZAR
        saving:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        is_marketplace:
          anyOf:
            - type: boolean
            - type: 'null'
        is_preorder:
          anyOf:
            - type: boolean
            - type: 'null'
        is_free_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        sku:
          anyOf:
            - type: integer
            - type: 'null'
        tsin:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_distribution:
          anyOf:
            - $ref: '#/components/schemas/TakealotRatingDistribution'
            - type: 'null'
        breadcrumbs:
          items:
            $ref: '#/components/schemas/TakealotBreadcrumb'
          type: array
          default: []
        images:
          items:
            type: string
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/TakealotSpecification'
          type: array
          default: []
        bullet_points:
          items:
            type: string
          type: array
          default: []
        loyalty_prices:
          items:
            $ref: '#/components/schemas/TakealotLoyaltyPrice'
          type: array
          default: []
        credit_option:
          anyOf:
            - $ref: '#/components/schemas/TakealotCreditOption'
            - type: 'null'
        variants:
          items:
            $ref: '#/components/schemas/TakealotVariant'
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/TakealotSeller'
            - type: 'null'
        other_offers:
          items:
            $ref: '#/components/schemas/TakealotOtherOffer'
          type: array
          default: []
      type: object
      required:
        - id
        - plid
        - product_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TakealotRatingDistribution:
      properties:
        '@type':
          type: string
          default: TakealotRatingDistribution
        one_star_count:
          type: integer
          default: 0
        two_star_count:
          type: integer
          default: 0
        three_star_count:
          type: integer
          default: 0
        four_star_count:
          type: integer
          default: 0
        five_star_count:
          type: integer
          default: 0
      type: object
    TakealotBreadcrumb:
      properties:
        '@type':
          type: string
          default: TakealotBreadcrumb
        id:
          type: integer
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        crumb_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    TakealotSpecification:
      properties:
        '@type':
          type: string
          default: TakealotSpecification
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    TakealotLoyaltyPrice:
      properties:
        '@type':
          type: string
          default: TakealotLoyaltyPrice
        name:
          type: string
        value:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    TakealotCreditOption:
      properties:
        '@type':
          type: string
          default: TakealotCreditOption
        provider:
          anyOf:
            - type: string
            - type: 'null'
        monthly_price:
          anyOf:
            - type: number
            - type: 'null'
        months:
          anyOf:
            - type: integer
            - type: 'null'
        cashback:
          anyOf:
            - type: string
            - type: 'null'
        more_cashback:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TakealotVariant:
      properties:
        '@type':
          type: string
          default: TakealotVariant
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
        selector_type:
          anyOf:
            - type: string
            - type: 'null'
        is_selected:
          type: boolean
          default: false
        is_enabled:
          type: boolean
          default: true
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    TakealotSeller:
      properties:
        '@type':
          type: string
          default: TakealotSeller
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_vat_registered:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
    TakealotOtherOffer:
      properties:
        '@type':
          type: string
          default: TakealotOtherOffer
        condition:
          anyOf:
            - type: string
            - type: 'null'
        from_price:
          anyOf:
            - type: number
            - type: 'null'
        offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        product_id:
          anyOf:
            - type: integer
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        stock_status:
          anyOf:
            - type: string
            - type: 'null'
        is_takealot:
          anyOf:
            - type: boolean
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/TakealotSeller'
            - 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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````