# UAE Ministry of Finance — 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 data from mof.gov.ae.

**Category:** Government & Public Data | **Website:** [mof.gov.ae/en/public-finance/government-procurement/current-business-opportunities/](https://mof.gov.ae/en/public-finance/government-procurement/current-business-opportunities/) | **Docs:** [parse.bot/marketplace/3e7e490a-04f6-4329-9c3a-19fde7832d99/mof-gov-ae-api](https://parse.bot/marketplace/3e7e490a-04f6-4329-9c3a-19fde7832d99/mof-gov-ae-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-mof-gov-ae-api-3e7e490a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_tenders

Retrieves current open procurement opportunities (tenders) from UAE federal government entities. Supports keyword search and ministry filtering. Results are auto-iterated across all pages. Each tender includes title, reference number, issuing entity, description, open/close dates, and a link to the official procurement portal.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ministry` | string | No | Filter by ministry/entity name. Must match a value from the site's ministry dropdown (e.g. 'Ministry of Finance - (112/996)'). Empty string returns all ministries. |
| `page` | integer | No | Page number (1-based). When 0 or omitted, all pages are fetched and combined. |
| `search` | string | No | Keyword to search across tender titles and descriptions. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mof-gov-ae-api-3e7e490a/list_tenders \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ministry":"<string>","page":"<integer>","search":"<string>"}'
```
