# Fazaa — 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.

> Search and browse offers, categories, and locations on Fazaa.ae, plus access membership benefits and special services like used cars, long-term leases, daily rentals, and Amakin deals. Find services near you on an interactive map and get detailed information on any offer that interests you.

**Category:** Marketplaces | **Website:** [fazaa.com/](https://fazaa.com/) | **Docs:** [parse.bot/marketplace/23b4bd18-f1d6-4527-ac44-b942e75b4e94/fazaa-com-api](https://parse.bot/marketplace/23b4bd18-f1d6-4527-ac44-b942e75b4e94/fazaa-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-fazaa-com-api-23b4bd18/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_on_map

Search for partners/offers near a location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `latitude` | number | Yes | Latitude |
| `longitude` | number | Yes | Longitude |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/find_on_map \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"latitude":"<number>","longitude":"<number>"}'
```

### get_amakin

Retrieve Fazaa Amakin (places/venues) listings.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/get_amakin \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_daily_rental

Retrieve daily car rental offers.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/get_daily_rental \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_long_term_car_lease

Retrieve long-term car lease options.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/get_long_term_car_lease \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_membership_benefits

Retrieve membership tiers and their associated benefits.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/get_membership_benefits \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_offer_details

Get full details of a specific offer using its slug.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The offer slug (e.g., 'indish-indian-restaurant') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/get_offer_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_used_cars

Retrieve listings for Fazaa used cars.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/get_used_cars \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_categories

List all available offer categories.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_cities

List all available cities grouped by country.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/list_cities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_offers

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

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug (e.g., 'new-offers', 'dining') |
| `city_id` | string | No | City ID for filtering |
| `latitude` | number | No | Latitude for geolocation search |
| `longitude` | number | No | Longitude for geolocation search |
| `page` | integer | No | Page number (0-indexed) |
| `query` | string | No | Search keyword |
| `size` | integer | No | Results per page |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fazaa-com-api-23b4bd18/search_offers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","city_id":"<string>","latitude":"<number>","longitude":"<number>","page":"<integer>","query":"<string>","size":"<integer>"}'
```
