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

# /madeinchina/products/search

> Search Made-in-China products by keyword. Returns B2B offer cards: title, FOB price range, MOQ, specification attributes, images, audited badges and the supplier. Filter by category, province, price range, minimum order, business type and audited status.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/madeinchina/products/search
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/madeinchina/products/search:
    post:
      tags:
        - /madeinchina
      summary: /madeinchina/products/search
      description: >-
        Search Made-in-China products by keyword. Returns B2B offer cards:
        title, FOB price range, MOQ, specification attributes, images, audited
        badges and the supplier. Filter by category, province, price range,
        minimum order, business type and audited status.


        **Price:** 1 credit
      operationId: __api_madeinchina_products_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MadeinchinaProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MadeinchinaProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MadeinchinaProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        category:
          anyOf:
            - $ref: '#/components/schemas/MadeinchinaCategory'
            - type: 'null'
        province:
          anyOf:
            - $ref: '#/components/schemas/MadeinchinaProvince'
            - type: 'null'
        min_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_order:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        business_type:
          anyOf:
            - $ref: '#/components/schemas/MadeinchinaBusinessType'
            - type: 'null'
        audited_supplier:
          type: boolean
          default: false
        leading_factory:
          type: boolean
          default: false
      type: object
      required:
        - keyword
        - count
    MadeinchinaProductCard:
      properties:
        '@type':
          type: string
          default: MadeinchinaProductCard
        id:
          type: string
        product_title:
          anyOf:
            - type: string
            - type: 'null'
        product_url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        moq:
          anyOf:
            - type: integer
            - type: 'null'
        moq_unit:
          anyOf:
            - type: string
            - type: 'null'
        attributes:
          additionalProperties:
            type: string
          type: object
          default: {}
        is_audited:
          type: boolean
          default: false
        is_leading_factory:
          type: boolean
          default: false
        image:
          anyOf:
            - type: string
            - type: 'null'
        supplier:
          anyOf:
            - $ref: '#/components/schemas/MadeinchinaProductCardSupplier'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MadeinchinaCategory:
      type: string
      enum:
        - agriculture-food
        - apparel-accessories
        - arts-crafts
        - auto-motorcycle-parts
        - bags-cases-boxes
        - chemicals
        - computer-products
        - construction-decoration
        - consumer-electronics
        - electrical-electronics
        - furniture
        - health-medicine
        - industrial-equipment
        - instruments-meters
        - light-industry-daily-use
        - lights-lighting
        - machinery
        - metallurgy-mineral-energy
        - office-supplies
        - packaging-printing
        - security-protection
        - service
        - sporting-goods
        - textile
        - tools-hardware
        - toys
        - transportation
    MadeinchinaProvince:
      type: string
      enum:
        - Guangdong
        - Zhejiang
        - Shandong
        - Jiangsu
        - Fujian
        - Shanghai
        - Hebei
        - Anhui
        - Henan
        - Hubei
        - Hunan
        - Beijing
        - Sichuan
        - Tianjin
        - Chongqing
        - Jiangxi
        - Shaanxi
        - Liaoning
        - Guangxi
        - Yunnan
        - Hainan
        - Shanxi
        - Hongkong
        - Guizhou
        - Jilin
        - Heilongjiang
        - Xinjiang
        - InnerMongolia
        - Gansu
        - Taiwan
    MadeinchinaBusinessType:
      type: string
      enum:
        - manufacturer
        - trading-company
        - group-corporation
        - other
    MadeinchinaProductCardSupplier:
      properties:
        '@type':
          type: string
          default: MadeinchinaProductCardSupplier
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````