# EK Immigration — 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.

> Access immigration project listings from EK Immigration with details including project names, countries, advantages, costs, and processing times to compare and evaluate your relocation options. Find comprehensive information about available immigration programs to make informed decisions about your migration plans.

**Category:** Government & Public Data | **Website:** [ekimmigration.com/](https://ekimmigration.com/) | **Docs:** [parse.bot/marketplace/223f081b-347b-4306-929a-d7cbd4e86b30/ekimmigration-com-api](https://parse.bot/marketplace/223f081b-347b-4306-929a-d7cbd4e86b30/ekimmigration-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-ekimmigration-com-api-223f081b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_projects

Lists immigration projects from ekimmigration.com with details including country, project type, advantages, investment cost, processing time, residence requirements, and identity type. Returns paginated results (10 per page). When country is omitted, returns all projects across all countries. The site has approximately 49 total projects across 5 pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Filter by country/region name in Chinese (e.g. '中国香港', '美国', '加拿大', '希腊'). When omitted, returns all projects. |
| `page` | integer | No | Page number for pagination. Each page returns up to 10 projects. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ekimmigration-com-api-223f081b/list_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","page":"<integer>"}'
```
