> ## Documentation Index
> Fetch the complete documentation index at: https://developers.scrapeunblocker.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Scrape a Temu product page

> Fetches a single Temu product and returns it as JSON: `name`, `description`, `brand`, `sku`, `price`, `priceCurrency`, `availability`, `rating`, `reviewCount` and `images`. Temu serves product data only to search-engine crawlers, so this reads the ld+json SEO document rather than a browser render. The url must be a product page (path ends in `-g-<id>.html`).



## OpenAPI

````yaml /api-reference/openapi.json post /goods/temu-product
openapi: 3.1.0
info:
  title: ScrapeUnblocker API
  description: >-
    Public API for the ScrapeUnblocker proxy/anti-bot service. Authenticate
    every request with the `x-scrapeunblocker-key` header. Three endpoints are
    documented here: page-source extraction, Google SERP scraping, and image
    fetch. All other paths exist for internal operations and are intentionally
    hidden from this spec.
  version: 1.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /goods/temu-product:
    post:
      tags:
        - Plugins
      summary: Scrape a Temu product page
      description: >-
        Fetches a single Temu product and returns it as JSON: `name`,
        `description`, `brand`, `sku`, `price`, `priceCurrency`, `availability`,
        `rating`, `reviewCount` and `images`. Temu serves product data only to
        search-engine crawlers, so this reads the ld+json SEO document rather
        than a browser render. The url must be a product page (path ends in
        `-g-<id>.html`).
      operationId: temu_product_goods_temu_product_post
      parameters:
        - name: url
          in: query
          required: true
          schema:
            type: string
            description: >-
              Full Temu product url, e.g.
              'https://www.temu.com/xyz-g-601099512345678.html'. Must be a
              product page (its path ends in `-g-<id>.html`); search/category
              urls have no product data and are rejected.
            title: Url
          description: >-
            Full Temu product url, e.g.
            'https://www.temu.com/xyz-g-601099512345678.html'. Must be a product
            page (its path ends in `-g-<id>.html`); search/category urls have no
            product data and are rejected.
      responses:
        '200':
          description: Product found and parsed.
          content:
            application/json:
              schema: {}
        '400':
          description: Not a Temu product url.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: Temu fleet rate limit reached - retry shortly.
        '502':
          description: Product document could not be fetched.
        '504':
          description: Fetch timed out.
      security:
        - ScrapeUnblockerKey: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ScrapeUnblockerKey:
      type: apiKey
      in: header
      name: x-scrapeunblocker-key
      description: Your ScrapeUnblocker API key. Apply on every request.

````