# Apps Apple — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for applications available on the Apple App Store in China and retrieve detailed information including each app's current version number and file size. This lets you quickly find and compare apps while staying informed about their specifications and storage requirements.

**Category:** Developer Tools | **Website:** [apps.apple.com/cn/app/](https://apps.apple.com/cn/app/) | **Docs:** [parse.bot/marketplace/d0c439d3-bb7c-4070-a778-0214ef797366/apps-apple-com-api](https://parse.bot/marketplace/d0c439d3-bb7c-4070-a778-0214ef797366/apps-apple-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-apps-apple-com-api-d0c439d3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_apps

Search for apps on the Apple App Store (China region) by keyword. Returns a list of matching apps with their current version, file size in bytes and MB, developer, category, ratings, and other metadata. Results are ordered by relevance as determined by the App Store. One upstream request per call; no pagination beyond the limit parameter (max 200).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return (1-200). |
| `query` | string | No | Search term for finding apps (e.g. '百度', 'WeChat', '抖音'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-apps-apple-com-api-d0c439d3/search_apps \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
