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

# Search Temu by keyword

> Searches Temu for `keyword` and returns product urls taken from Temu's own search page. With `details=true` it also resolves the top `details_limit` urls to full product objects (name, price, rating, images, ...). Product data comes from Temu's crawler SEO document, so this needs no browser render.



## OpenAPI

````yaml /api-reference/openapi.json post /goods/temu-search
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-search:
    post:
      tags:
        - Plugins
      summary: Search Temu by keyword
      description: >-
        Searches Temu for `keyword` and returns product urls taken from Temu's
        own search page. With `details=true` it also resolves the top
        `details_limit` urls to full product objects (name, price, rating,
        images, ...). Product data comes from Temu's crawler SEO document, so
        this needs no browser render.
      operationId: temu_search_goods_temu_search_post
      parameters:
        - name: keyword
          in: query
          required: true
          schema:
            type: string
            description: Search phrase, e.g. 'kids toys' or 'phone case'.
            title: Keyword
          description: Search phrase, e.g. 'kids toys' or 'phone case'.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Max product urls to return (Temu serves ~14 per search page).
            default: 40
            title: Limit
          description: Max product urls to return (Temu serves ~14 per search page).
        - name: details
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              If true, also resolve the top `details_limit` urls to full product
              objects (each is an extra fetch and counts toward the rate limit).
            default: false
            title: Details
          description: >-
            If true, also resolve the top `details_limit` urls to full product
            objects (each is an extra fetch and counts toward the rate limit).
        - name: details_limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 20
            minimum: 1
            description: How many results to resolve to full products when `details=true`.
            default: 8
            title: Details Limit
          description: How many results to resolve to full products when `details=true`.
      responses:
        '200':
          description: Search succeeded (may carry `products` when `details=true`).
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: Temu fleet rate limit reached - retry shortly.
        '502':
          description: Search returned no product urls (block or empty).
        '504':
          description: Search 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.

````