> ## 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 oopbuy.com product-search listings

> Searches oopbuy.com for `keyword` and returns product listings as JSON: `title`, `titleCn`, `price` (in USD), `priceCny`, `monthSold`, `image`, `spu`, `channel`, and a product `url`. Pick the source marketplace with `channel` ('1688', 'taobao', or 'official'), order with `sort`, and page with `page`/`page_size`. Note: oopbuy trademark-blocks brand-name keywords at its own backend. That block is oopbuy's own genuine answer (it returns it as an HTTP 200 too), so we mirror it: brand queries come back as HTTP 200 with `keywordRejected: true` and an empty `results` array, not an error.



## OpenAPI

````yaml /api-reference/openapi.json post /goods/oopbuy-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/oopbuy-search:
    post:
      tags:
        - Plugins
      summary: Scrape oopbuy.com product-search listings
      description: >-
        Searches oopbuy.com for `keyword` and returns product listings as JSON:
        `title`, `titleCn`, `price` (in USD), `priceCny`, `monthSold`, `image`,
        `spu`, `channel`, and a product `url`. Pick the source marketplace with
        `channel` ('1688', 'taobao', or 'official'), order with `sort`, and page
        with `page`/`page_size`. Note: oopbuy trademark-blocks brand-name
        keywords at its own backend. That block is oopbuy's own genuine answer
        (it returns it as an HTTP 200 too), so we mirror it: brand queries come
        back as HTTP 200 with `keywordRejected: true` and an empty `results`
        array, not an error.
      operationId: oopbuy_search_goods_oopbuy_search_post
      parameters:
        - name: keyword
          in: query
          required: true
          schema:
            type: string
            description: >-
              Search phrase, e.g. 'hoodie' or 'phone case'. oopbuy
              trademark-blocks brand names (nike, adidas) at its own backend;
              those come back as a successful HTTP 200 carrying
              `keywordRejected: true` and an empty `results` array, not an
              error.
            title: Keyword
          description: >-
            Search phrase, e.g. 'hoodie' or 'phone case'. oopbuy
            trademark-blocks brand names (nike, adidas) at its own backend;
            those come back as a successful HTTP 200 carrying `keywordRejected:
            true` and an empty `results` array, not an error.
        - name: channel
          in: query
          required: false
          schema:
            type: string
            description: >-
              Source marketplace: '1688' (default), 'taobao', or 'official'
              (oopbuy's own curated storefront).
            default: '1688'
            title: Channel
          description: >-
            Source marketplace: '1688' (default), 'taobao', or 'official'
            (oopbuy's own curated storefront).
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: 1-based page number.
            default: 1
            title: Page
          description: 1-based page number.
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 60
            minimum: 1
            description: Results per page (max 60).
            default: 20
            title: Page Size
          description: Results per page (max 60).
        - name: sort
          in: query
          required: false
          schema:
            type: string
            description: 'Ordering: ''default'', ''price_asc'', ''price_desc'', or ''best_selling''.'
            default: default
            title: Sort
          description: 'Ordering: ''default'', ''price_asc'', ''price_desc'', or ''best_selling''.'
        - name: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Exit-IP country (ISO-2, e.g. 'US', 'DE').
            title: Proxy Country
          description: Exit-IP country (ISO-2, e.g. 'US', 'DE').
      responses:
        '200':
          description: >-
            Successful scrape. Either a `results` array of listings, or - for a
            brand/trademark-blocked keyword - `keywordRejected: true` with an
            empty `results` array (oopbuy's own genuine response).
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Search failed (upstream block or proxy failure).
        '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.

````