ATAAD Public API

Read-only JSON endpoints for scaffolding, heavy equipment and cargo logistics in the UAE. No authentication required. Rate limited to 60 requests/minute per IP. Responses are cached for one hour.

Base URL: https://ataad.ae/api/public · OpenAPI spec

GET/v1/scaffolding

List scaffolding types and per-city pricing (AED).

Example response

[
  {
    "id": "a1b2",
    "name": "Frame Scaffolding",
    "slug": "frame-scaffolding",
    "category": "Frame",
    "pricing": [
      { "city": "Dubai", "daily_aed": 280, "weekly_aed": 1650, "monthly_aed": 6200 }
    ]
  }
]
GET/v1/equipment

List heavy equipment with category, emirate and daily AED rate.

Example response

[
  {
    "id": "c3d4",
    "name": "Liebherr LTM 1090-4.2 Mobile Crane",
    "slug": "liebherr-ltm-1090",
    "category": "RentOS Heavy Lift",
    "emirate": "Dubai",
    "daily_rate_aed": 4800
  }
]
GET/v1/cargo-routes

List active cargo corridors with container availability.

Example response

[
  {
    "id": "e5f6",
    "origin": "China",
    "destination": "United Arab Emirates",
    "slug": "china-to-united-arab-emirates",
    "containers": [{ "size": "40ft High Cube", "available": true }]
  }
]