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

# Run AliExpress Product Search

> Searches AliExpress products by keyword with optional sort, price, shipping, and rating filters. List endpoint: 1 point per returned record. Asynchronous: returns `session_id` with `run_status: "running"` immediately — poll Get Session Status until `status` is `complete`.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-aliexpress-product-search
openapi: 3.0.0
info:
  title: NeuralVerge API
  version: 1.0.0
  description: >-
    NeuralVerge API for AI research workflows, search, extraction, and
    structured data source execution.
servers:
  - url: https://api.neuralverge.ai
    description: NeuralVerge API
security:
  - BearerAuth: []
tags:
  - name: AI Research
    description: Research workflows and session tracking.
  - name: AI Extract
    description: Schema-driven extraction workflows.
  - name: AI Agents
    description: Reusable saved agents executed through the API.
  - name: Search
    description: Fast, synchronous web search with no session or polling.
  - name: Data Sources
    description: >-
      Focused provider lookups for LinkedIn, email, phone, company, marketplace
      (Amazon, eBay, Walmart, AliExpress, Alibaba), and product review
      (Capterra, Gartner Peer Insights, Trustpilot) data.
paths:
  /functions/v1/run-aliexpress-product-search:
    post:
      tags:
        - Data Sources
      summary: Run AliExpress Product Search
      description: >-
        Searches AliExpress products by keyword with optional sort, price,
        shipping, and rating filters. List endpoint: 1 point per returned
        record. Asynchronous: returns `session_id` with `run_status: "running"`
        immediately — poll Get Session Status until `status` is `complete`.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                keyword:
                  type: string
                  description: Search term.
                max_items:
                  type: integer
                  minimum: 1
                  maximum: 250
                  default: 25
                  description: >-
                    Maximum number of records to return (1-250). Billed at 1
                    point per returned record.
                start_page:
                  type: integer
                  minimum: 1
                  default: 1
                  description: Result page to start from.
                sort:
                  type: string
                  enum:
                    - best_match
                    - orders
                    - price_low_to_high
                    - price_high_to_low
                min_price:
                  type: number
                  minimum: 0
                max_price:
                  type: number
                  minimum: 0
                language:
                  type: string
                  enum:
                    - ar_MA
                    - de_DE
                    - en_US
                    - es_ES
                    - fr_FR
                    - in_ID
                    - it_IT
                    - iw_IL
                    - ja_JP
                    - ko_KR
                    - nl_NL
                    - pl_PL
                    - pt_BR
                    - ru_RU
                    - th_TH
                    - tr_TR
                    - vi_VN
                  description: AliExpress site language.
                currency:
                  type: string
                  description: ISO currency code for prices, e.g. USD.
                country:
                  type: string
                  description: Ship-to country, ISO 3166 alpha-2.
                ship_from:
                  type: string
                  description: Ship-from country, ISO 3166 alpha-2.
                free_shipping:
                  type: boolean
                choice:
                  type: boolean
                  description: Only AliExpress Choice items.
                four_star_and_up:
                  type: boolean
                local_shipping:
                  type: boolean
              required:
                - keyword
            example:
              keyword: wireless mouse
              max_items: 25
              sort: orders
              country: US
      responses:
        '200':
          description: >-
            Job accepted; poll Get Session Status with `session_id`. Once
            complete, `results` has the same shape as a synchronous data source
            response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  session_id:
                    type: string
                  run_status:
                    type: string
                    enum:
                      - running
              example:
                session_id: eeeeeeee-eeee-eeee-eeee-eeeeeeeeeeee
                run_status: running
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '402':
          description: Payment Required
        '500':
          description: Internal Error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````