# Asian Development Bank — 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 and retrieve detailed information about Asian Development Bank projects, including project listings, descriptions, status, and financial details. Access comprehensive project data to research ADB-funded initiatives across different regions and sectors.

**Category:** Government & Public Data | **Website:** [adb.org/](https://adb.org/) | **Docs:** [parse.bot/marketplace/47f4efdc-099a-45c5-96be-2caea62f1222/adb-org-api](https://parse.bot/marketplace/47f4efdc-099a-45c5-96be-2caea62f1222/adb-org-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-adb-org-api-47f4efdc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_project_details

Retrieve full details for a specific ADB project by its project ID or URL. Returns comprehensive project information including description, impact statement, status, financing details, responsible officers, and all key-value pairs from the project data sheet. The raw_details field contains the complete set of labeled fields from the project page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `project_id` | string | No | ADB Project ID (e.g., 59364-001). Either project_id or url must be provided. |
| `url` | string | No | Full ADB project URL (e.g., https://www.adb.org/projects/59364-001/main). Alternative to project_id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-adb-org-api-47f4efdc/get_project_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_id":"<string>","url":"<string>"}'
```

### get_projects

Search and list projects from the Asian Development Bank with optional filtering by keyword, country, and status. Returns paginated results with 15 projects per page. Results are sorted by board approval date descending. Pagination is zero-indexed. When no filters are applied, returns all projects.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country or economy name for filtering projects (e.g., India, Thailand, Indonesia, Bangladesh, Nepal, Philippines, Viet Nam, Pakistan) |
| `fetch_descriptions` | boolean | No | Whether to include project body descriptions in results (available from the search index without extra requests) |
| `page` | integer | No | Page number for pagination (0-indexed, 15 results per page) |
| `query` | string | No | Search terms to filter projects by keyword |
| `status` | string | No | Project status filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-adb-org-api-47f4efdc/get_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","fetch_descriptions":"<boolean>","page":"<integer>","query":"<string>","status":"<string>"}'
```
