Discover/Fujairah API
live

Fujairah APIpwad.fujairah.ae

Access structured tender records from the Fujairah Department of Public Works and Agriculture, including reference numbers, titles, types, and dates via one endpoint.

This API takes change requests — .
Endpoint health
verified 5d ago
list_tenders
1/1 passing latest checkself-healing
Endpoints
1
Updated
12d ago

What is the Fujairah API?

The Fujairah PWAD Tenders API exposes one endpoint — list_tenders — that returns all currently active procurement opportunities published by the Fujairah Department of Public Works and Agriculture. Each response includes up to seven structured fields per tender record: reference number, title, description, type, relevant dates, and status. When no active tenders are live on the source, the endpoint returns an empty array with a zero count.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/b3c11771-3645-4cbf-9509-2e29a7eb8466/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/b3c11771-3645-4cbf-9509-2e29a7eb8466/list_tenders' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace pwad-fujairah-ae-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


"""Walkthrough: Fujairah PWAD Tenders SDK — bounded, re-runnable; every call capped."""
from parse_apis.pwad_fujairah_ae_api import FujairahPWAD, ParseError

client = FujairahPWAD()

# List all current active tenders (capped at 10 items)
for tender in client.tenders.list(limit=3):
    print(tender.tender_number, tender.title, tender.open_date, tender.close_date)

# Attempt to get tenders and handle potential errors
try:
    first = client.tenders.list(limit=1).first()
    if first:
        print(first.title, first.type, first.status)
    else:
        print("No active tenders currently published")
except ParseError as e:
    print(f"Error fetching tenders: {e.code}")

print("exercised: tenders.list")
All endpoints · 1 totalmissing one? ·

Retrieves all current active tenders from the Fujairah Department of Public Works and Agriculture. Returns structured tender records including reference numbers, titles, descriptions, types, and dates. The result may be empty when no active tenders are published.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of tenders returned",
    "tenders": "array of tender records with number, title, description, type, dates, and status"
  },
  "sample": {
    "total": 0,
    "tenders": []
  }
}

About the Fujairah API

What the API Returns

The list_tenders endpoint returns a total integer alongside a tenders array. Each element in that array carries a structured tender record with the following fields: number (the official reference identifier), title, description, type (classifying the nature of the procurement), dates (covering publication and/or closing timelines), and status. All records reflect tenders currently active on the Fujairah PWAD portal.

Inputs and Filtering

The list_tenders endpoint accepts no input parameters. It returns the full set of active tenders in a single call. If you need to filter by tender type, date range, or status, that logic must be applied client-side against the returned array. When the department has no open tenders published, total returns 0 and tenders returns an empty array — this is expected behavior, not an error.

Coverage and Scope

Data coverage is limited to tenders currently visible on the public-facing Fujairah PWAD portal. Expired, awarded, or archived tenders are not included in the response. The API reflects the live state of active procurement listings at the time of the request, making it suitable for polling workflows that need to detect newly published tenders.

Reliability & maintenanceVerified

The Fujairah API is a managed, monitored endpoint for pwad.fujairah.ae — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when pwad.fujairah.ae changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official pwad.fujairah.ae API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor newly published government construction contracts in Fujairah by polling list_tenders for new number values.
  • Aggregate tender type fields to categorize procurement activity by public works vs. agriculture projects.
  • Track tender dates to build automated deadline-reminder workflows for procurement teams.
  • Feed tender title and description into a searchable internal database for bid/no-bid qualification.
  • Alert business development teams when total increases, signaling new procurement opportunities.
  • Populate a procurement dashboard showing all active Fujairah government contracts and their current status.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the Fujairah PWAD website offer an official developer API?+
No. The Fujairah Department of Public Works and Agriculture does not publish an official developer API or data feed for tender listings.
Does `list_tenders` return closed, awarded, or historical tenders?+
No. The endpoint returns only tenders that are currently active and publicly listed. Closed or awarded tenders are not included. You can fork this API on Parse and revise it to add an endpoint targeting historical or awarded tender records if the source exposes those pages.
Can I filter results by tender type or date range within the API call?+
The list_tenders endpoint accepts no filter parameters — it returns all active tenders in one response. Filtering by type, dates, or status must be done client-side after receiving the full array.
Does the API cover tender documents or attached files?+
Not currently. The API covers structured metadata fields: reference number, title, description, type, dates, and status. Downloadable tender documents or specifications are not included in the response. You can fork this API on Parse and revise it to add an endpoint that retrieves document links or attachments from individual tender detail pages.
What happens when there are no active tenders published?+
The list_tenders endpoint returns total: 0 and an empty tenders array. This is the expected response when the Fujairah PWAD portal has no open tenders at the time of the request, not an error condition.
Page content last updated . Spec covers 1 endpoint from pwad.fujairah.ae.
Related APIs in Government PublicSee all →
tawreed.ajman.ae API
Access active government tenders from Ajman's official procurement portal to find tender reference numbers, issuing entities, key dates, current status, and contact information for bidding opportunities. Monitor and browse available government contracts in one convenient location.
moei.gov.ae API
Monitor and browse public tender opportunities from the UAE Ministry of Energy and Infrastructure to identify potential business contracts and bidding opportunities. Stay updated on the latest energy and infrastructure projects available for tender in the UAE.
mof.gov.ae API
Access data from mof.gov.ae.
dewa.gov.ae API
Access current public open tender listings from Dubai Electricity and Water Authority (DEWA) to find procurement opportunities and bid on available projects. Browse detailed tender information to identify contracts that match your business capabilities and submit competitive proposals.
esupply.dubai.gov.ae API
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.
eprocurement-sfd.uae.app.jaggaer.com API
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.
tenders.etimad.sa API
Browse and search all public Saudi government tenders from the Etimad platform with detailed information including tender specifications and awarding results. Stay updated on procurement opportunities by accessing tender details and award outcomes in one centralized location.
bidsandtenders.com API
Search and discover public bid opportunities across Canada and the USA to find relevant procurement projects for your business. Access real-time tender data from the bids&tenders eProcurement platform to identify and pursue new contract opportunities.