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

> Download the latest APK files for any app directly by retrieving current download URLs from APKMirror. Quickly access the most recent app versions available on the platform without manually searching the website.

**Category:** Developer Tools | **Website:** [www.apkmirror.com/apk/x-corp/twitter/](https://www.apkmirror.com/apk/x-corp/twitter/) | **Docs:** [parse.bot/marketplace/2720f867-ef96-426e-addd-07f0568fc099/apkmirror-com-api](https://parse.bot/marketplace/2720f867-ef96-426e-addd-07f0568fc099/apkmirror-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-apkmirror-com-api-2720f867/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_latest_download_url

Gets the latest APK download URL for a specified app on APKMirror. Navigates the app page, finds the latest release version, selects the first available variant, and returns the direct download link with its key parameter. By default, beta versions are skipped in favor of stable releases. The app_slug identifies the developer and app name as they appear in the APKMirror URL path structure.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `app_slug` | string | No | The app slug in the format 'developer/app-name' as it appears in the APKMirror URL path (e.g. 'x-corp/twitter', 'google-inc/youtube', 'meta/instagram'). |
| `include_beta` | string | No | Whether to include beta versions when finding the latest release. Accepts 'true' or 'false'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-apkmirror-com-api-2720f867/get_latest_download_url \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"app_slug":"<string>","include_beta":"<string>"}'
```
