# Mubawab — 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 for apartments for sale on Mubawab.ma and retrieve detailed listing information including contact details for property sellers. Browse available properties with full descriptions and seller contact information to find your ideal real estate opportunity.

**Category:** Real Estate | **Website:** [mubawab.ma/](https://mubawab.ma/) | **Docs:** [parse.bot/marketplace/42cf48b6-110b-4970-a18e-668738dd79d8/mubawab-ma-api](https://parse.bot/marketplace/42cf48b6-110b-4970-a18e-668738dd79d8/mubawab-ma-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-mubawab-ma-api-42cf48b6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Retrieve full details for a specific listing including characteristics, description, pricing, surface area, rooms, and contact phone number when available. The url parameter should be a listing URL obtained from search_apartments_for_sale results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the listing detail page on mubawab.ma (obtained from search_apartments_for_sale results[*].url) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mubawab-ma-api-42cf48b6/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_apartments_for_sale

Search for apartments for sale in a specific Moroccan city. Returns paginated listings with title, price, URL, and listing ID. Results include both individual listings and promoted project listings (projects may have null listing_id). Paginate by incrementing the page parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City slug to search in (e.g. casablanca, rabat, marrakech, tanger, agadir) |
| `page` | integer | No | Page number for pagination, must be a positive integer |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mubawab-ma-api-42cf48b6/search_apartments_for_sale \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","page":"<integer>"}'
```
