# Projects Worldbank — 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 World Bank projects and procurement opportunities across all sectors and regions to find funding information and active tenders. Retrieve detailed project information, funding breakdowns, and procurement notices.

**Category:** Government & Public Data | **Website:** [projects.worldbank.org/](https://projects.worldbank.org/) | **Docs:** [parse.bot/marketplace/2601af9e-e16f-4242-a420-99f297d3e98a/projects-worldbank-org-api](https://parse.bot/marketplace/2601af9e-e16f-4242-a420-99f297d3e98a/projects-worldbank-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-projects-worldbank-org-api-2601af9e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_project_details

Retrieve full details for a single World Bank project by its ID. Returns funding breakdown, sector, country, abstract, implementation details, and team information. Returns input_not_found when the ID does not match any project.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `project_id` | string | Yes | World Bank project ID (e.g. P179950, P154732). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-projects-worldbank-org-api-2601af9e/get_project_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_id":"<string>"}'
```

### search_procurement

Full-text search over World Bank procurement/tender notices. Returns bid descriptions, deadlines, contact information, and the raw notice HTML. Paginates via offset; up to 100 results per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results (max 100). |
| `offset` | integer | No | Pagination offset (0-based item count). |
| `query` | string | No | Search keyword(s) matched against procurement notice text and descriptions. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-projects-worldbank-org-api-2601af9e/search_procurement \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>"}'
```

### search_projects

Full-text search over World Bank projects. Matches query against project names, abstracts, and metadata. Optionally filter by project status. Paginates via offset; each result carries sector, funding, country, and abstract fields. Returns up to 100 results per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results (max 100). |
| `offset` | integer | No | Pagination offset (0-based item count). |
| `query` | string | No | Search keyword(s) matched against project names, abstracts, and metadata. |
| `status` | string | No | Filter by project status. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-projects-worldbank-org-api-2601af9e/search_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>","status":"<string>"}'
```
