# Esupply Dubai — 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 published government tender opportunities directly from Dubai's official eSupply procurement portal to discover and monitor active bidding projects. Stay informed about public procurement contracts available through Dubai's government sourcing platform.

**Category:** Government & Public Data | **Website:** [esupply.dubai.gov.ae/esop/guest/go/public/opportunity/current?locale=en_GB](https://esupply.dubai.gov.ae/esop/guest/go/public/opportunity/current?locale=en_GB) | **Docs:** [parse.bot/marketplace/5f97544c-7c54-4e92-8def-9bbd3415524d/esupply-dubai-gov-ae-api](https://parse.bot/marketplace/5f97544c-7c54-4e92-8def-9bbd3415524d/esupply-dubai-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-esupply-dubai-gov-ae-api-5f97544c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_tenders

Lists current government tender opportunities from Dubai's official eSupply portal. For each tender on the listing page, the detail page is fetched to extract richer fields: the actual item description (title_en), scope of work (description_en), and category. Results are ordered by closing date (ascending). Client-side filtering by publication date is supported via published_since. Results are auto-iterated across the portal's internal pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. |
| `page_size` | integer | No | Number of tender records per page. |
| `published_since` | string | No | ISO-8601 date-time string. When provided, only tenders published on or after this date-time are returned (e.g. 2026-07-01T00:00:00). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-esupply-dubai-gov-ae-api-5f97544c/list_tenders \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","published_since":"<string>"}'
```
