# AnyAPI AliExpress Search

> AnyAPI AliExpress Search is a paid API for AI agents from api.getanyapi.com, paid per call via x402, $0.0375/call, status unknown (last checked 2026-09-16).

Searches AliExpress product listings and returns results including product titles, prices, ratings, and seller information.

## Facts

- Endpoint: POST https://api.getanyapi.com/v1/run/aliexpress.search
- Price: $0.0375/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Success rate: 0% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anyapi-aliexpress-search-6c982a65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hyqkQSYLuIxrU64yJy7wu

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability anyapi-aliexpress-search-6c982a65 -d '<json body>'
```

Example prompt: Search AliExpress for 'wireless earbuds under $20' and give me the top product listings with prices, ratings, and links.

## When to prefer this

Use this endpoint when you need to programmatically search AliExpress product listings without a subscription — ideal for price comparison tools, dropshipping research, or e-commerce analytics where pay-per-request pricing is preferred over monthly API plans.

## Known failure modes

- Invalid or missing search query returns error
- AliExpress anti-bot detection may cause scrape failure
- No results found for very niche or misspelled queries
- Rate limiting if too many requests in quick succession
- Payment failure if wallet has insufficient USDC balance

## How this service works

1,200+ scraping and data APIs behind one key. Pay per request in real dollars. No subscriptions, nothing monthly, nothing to cancel.

## Output

A JSON array of AliExpress product search results including product names, prices, ratings, review counts, seller information, product image URLs, and links to product pages on AliExpress.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "title": "Yelp search input",
 "example": {
  "limit": 5,
  "query": "pizza",
  "location": "Chicago, IL"
 },
 "required": [
  "query",
  "location"
 ],
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1,
   "description": "Maximum number of results to return (1 to 20, default 20)."
  },
  "query": {
   "type": "string",
   "description": "Search term or category to look for (e.g. sushi)."
  },
  "location": {
   "type": "string",
   "description": "City and state defining the search area (e.g. San Francisco, CA)."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anyapi-aliexpress-search-6c982a65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getanyapi.com](https://www.zero.xyz/host/api.getanyapi.com/llms.txt)
