# Eprocurement Sfd Uae Jaggaer — 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.

> Monitor and retrieve current procurement opportunities from the Sharjah Government Finance Department, including detailed information about each tender and project listing. Browse available bids to identify and track business opportunities in the Sharjah region.

**Category:** Government & Public Data | **Website:** [eprocurement-sfd.uae.app.jaggaer.com/esop/guest/go/public/opportunity/current?customLoginPage=%2Fweb%2Flogin.html&locale=en_GB](https://eprocurement-sfd.uae.app.jaggaer.com/esop/guest/go/public/opportunity/current?customLoginPage=%2Fweb%2Flogin.html&locale=en_GB) | **Docs:** [parse.bot/marketplace/f4b4cdca-d773-4d9c-ac05-fed1164db0a4/eprocurement-sfd-uae-app-jaggaer-com-api](https://parse.bot/marketplace/f4b4cdca-d773-4d9c-ac05-fed1164db0a4/eprocurement-sfd-uae-app-jaggaer-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-eprocurement-sfd-uae-app-jaggaer-com-api-f4b4cdca/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_opportunity_detail

Retrieves full details for a single procurement opportunity by its numeric ID. Returns the complete record including reference number, description, buyer contact, and all metadata. The opportunity may be in either the current or past listing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `opportunity_id` | string | Yes | Numeric opportunity ID from the portal (e.g. '240049'). Obtained from list_opportunities results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eprocurement-sfd-uae-app-jaggaer-com-api-f4b4cdca/get_opportunity_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"opportunity_id":"<string>"}'
```

### list_opportunities

Retrieves all current procurement opportunities from the Sharjah Finance Department eProcurement portal. Returns summary records for each opportunity including title, buyer, category, and deadline. Results are auto-iterated across pages when more than 100 opportunities exist. An empty result is valid when no opportunities are currently published.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eprocurement-sfd-uae-app-jaggaer-com-api-f4b4cdca/list_opportunities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
