Discover/fazaa.com API
live

fazaa.com APIfazaa.com

Access Fazaa.ae offers, categories, cities, membership tiers, used cars, leases, daily rentals, and Amakin venues via 10 structured endpoints.

Endpoints
10
Updated
3mo ago
Try it
Page number (0-indexed)
Results per page
Search keyword
City ID for filtering
Category slug (e.g., 'new-offers', 'dining')
Latitude for geolocation search
Longitude for geolocation search
api.parse.bot/scraper/eabc774a-c7ce-4288-8e49-0d748c9ead62/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/eabc774a-c7ce-4288-8e49-0d748c9ead62/search_offers?page=0&size=20&query=restaurant' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 10 totalclick to expand

Search for offers with filters like category, city, keyword, and coordinates.

Input
ParamTypeDescription
pageintegerPage number (0-indexed)
sizeintegerResults per page
querystringSearch keyword
city_idstringCity ID for filtering
categorystringCategory slug (e.g., 'new-offers', 'dining')
latitudenumberLatitude for geolocation search
longitudenumberLongitude for geolocation search
Response
{
  "type": "object",
  "fields": {
    "total": "total number of results",
    "content": "array of offers"
  },
  "sample": {
    "data": {
      "total": 433,
      "content": [
        {
          "id": "fb45ee29-b547-4138-b0fb-273d923b7767",
          "slug": "smokey-woods-restaurant",
          "type": "OFFER",
          "title": "25% Discount        ",
          "imageUri": "/upload/offers/20241007071240_Untitled-1.jpeg",
          "subTitle": "Smokey Woods Restaurant",
          "locations": [
            {
              "lat": 0,
              "lon": 0,
              "geohash": "",
              "fragment": true
            }
          ],
          "partnerName": "Smokey Woods Restaurant ",
          "serviceLink": null,
          "serviceType": null,
          "serviceSubType": null,
          "localizedServiceLink": null,
          "localizedMobileServiceLink": null
        },
        {
          "id": "9348db43-b1c8-4a4c-8073-f80786f25be9",
          "slug": "beit-el-beiruty-restaurant-and-coffee-shop",
          "type": "OFFER",
          "title": "20% Discount ",
          "imageUri": "/upload/offers/20241205095325_20241205094101_cb6dbe8f-5386-44da-9f41-b9a652388b59.jpg",
          "subTitle": "BEIT EL BEIRUTY RESTAURANT AND COFFEE SHOP",
          "locations": [
            {
              "lat": 0,
              "lon": 0,
              "geohash": "",
              "fragment": true
            }
          ],
          "partnerName": "BEIT EL BEIRUTY RESTAURANT AND COFFEE SHOP",
          "serviceLink": null,
          "serviceType": null,
          "serviceSubType": null,
          "localizedServiceLink": null,
          "localizedMobileServiceLink": null
        },
        {
          "id": "1e2b522f-ed8b-4f42-92b8-c8c134c2a167",
          "slug": "indira-indian-restaurant",
          "type": "OFFER",
          "title": "25% Discount",
          "imageUri": "/upload/offers/indira-indian-restaurant-holiday-inn-cairo-citystars-hotel-1688462822566.jpg",
          "subTitle": " Indira Indian Restaurant- Holiday Inn Cairo - Citystars, hotel",
          "locations": [
            {
              "lat": 30.07430890277261,
              "lon": 31.343801212929684,
              "geohash": "",
              "fragment": true
            }
          ],
          "partnerName": " Indira Indian Restaurant",
          "serviceLink": null,
          "serviceType": null,
          "serviceSubType": null,
          "localizedServiceLink": null,
          "localizedMobileServiceLink": null
        }
      ]
    },
    "status": "success"
  }
}

About the fazaa.com API

The Fazaa API exposes 10 endpoints covering the full range of content on Fazaa.ae, the UAE employee benefits platform. You can search and filter offers by keyword, city, category, or coordinates using search_offers, fetch full offer details by slug with get_offer_details, retrieve car listings across three transaction types, and look up nearby partners by latitude and longitude — all returning structured JSON with localized English and Arabic fields.

Offers and Search

search_offers accepts a combination of query, city_id, category (e.g. 'dining', 'new-offers'), and geographic coordinates (latitude, longitude) to return a paginated list of offers. Results include a total count and a content array. Pagination is 0-indexed via the page parameter with a configurable size. get_offer_details takes an offer slug and returns a full record including the id, partner object, and localData with both English and Arabic localized content — useful when building bilingual interfaces.

Taxonomy and Geography

list_categories returns all available category objects, which can be passed as slugs to search_offers. list_cities returns countries with their nested city arrays, including the city_id values needed for location-scoped offer searches. Together these two endpoints give you the complete valid parameter space for the search filter dimensions.

Automotive Services

Three dedicated endpoints cover Fazaa's vehicle services: get_used_cars returns car-sale listings, get_long_term_car_lease returns lease options, and get_daily_rental returns short-term rental offers. Each returns a content array of listings. These are separate endpoints reflecting distinct inventory pools rather than a single filterable vehicle catalog.

Membership, Venues, and Map Search

get_membership_benefits returns tier structure and benefit descriptions in localized localData fields, suitable for rendering a membership comparison page. get_amakin retrieves Fazaa Amakin venue and places listings. find_on_map accepts required latitude and longitude values and returns a results array of nearby partners and offers — the geographic complement to the coordinate filtering available in search_offers.

Common use cases
  • Build a bilingual (EN/AR) UAE deals aggregator using localData fields from get_offer_details
  • Populate a city-scoped offer feed by combining list_cities city IDs with the city_id filter in search_offers
  • Display a membership tier comparison page using benefit data from get_membership_benefits
  • Create a vehicle-finder tool covering used sales, long-term leases, and daily rentals from three dedicated car endpoints
  • Show a live map of nearby Fazaa partners using find_on_map with the device's GPS coordinates
  • Sync offer categories for a UAE employee-benefits app by polling list_categories and search_offers
  • List Amakin venues alongside standard offers in a places-discovery interface using get_amakin
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Fazaa.ae have an official public developer API?+
Fazaa does not publish a public developer API or API documentation for third-party use. The data on Fazaa.ae is not officially exposed through a documented, publicly accessible developer program.
What does `get_offer_details` return beyond what `search_offers` provides?+
search_offers returns summary-level offer data in a paginated content array. get_offer_details takes a specific slug and returns the full record, including the partner object with partner-level details and the localData block containing localized text in both English and Arabic — fields that are not necessarily included in the search listing response.
Can I filter car listings by make, model, price, or year?+
The three car endpoints (get_used_cars, get_long_term_car_lease, get_daily_rental) currently accept no filter parameters and return full content arrays. Filtering by attributes like make, price range, or year is not exposed at this time. You can fork this API on Parse and revise it to add filter parameters once you've inspected the fields returned in the content array.
How does pagination work in `search_offers`?+
Pagination uses a 0-indexed page parameter combined with a size parameter controlling results per page. The response includes a total field indicating the full result count, so you can calculate the number of pages as ceil(total / size).
Does the API expose individual offer redemption history or user-specific data?+
No user-specific or redemption data is exposed. The API covers publicly visible offer content, categories, cities, membership benefit descriptions, vehicle listings, and venue data. You can fork this API on Parse and revise it to target additional content if Fazaa.ae exposes relevant pages.
Page content last updated . Spec covers 10 endpoints from fazaa.com.
Related APIs in MarketplaceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
Fazaa.ae API – Offers, Cars & Membership Data · Parse