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

> Access blog posts and frequently asked questions about Ejari, Saudi Arabia's licensed monthly-rent platform, with content available in both English and Arabic. Browse rental tips, FAQs, and housing insights to make informed decisions about monthly rentals in Saudi Arabia.

**Category:** Real Estate | **Website:** [ejari.sa/](https://ejari.sa/) | **Docs:** [parse.bot/marketplace/294c6c19-7182-46ac-8c0c-952c943de2d8/ejari-sa-api](https://parse.bot/marketplace/294c6c19-7182-46ac-8c0c-952c943de2d8/ejari-sa-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-ejari-sa-api-294c6c19/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_blog_post

Get the full content of a specific blog post by its slug (from list_blog_posts). Returns structured content sections including paragraphs, headings, lists, tables, and blockquotes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Content language. |
| `slug` | string | Yes | Blog post slug identifier, e.g. 'breaking-a-lease-saudi-arabia'. Obtained from list_blog_posts results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ejari-sa-api-294c6c19/get_blog_post \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>","slug":"<string>"}'
```

### get_faqs

Get all frequently asked questions and answers from Ejari's FAQ page. Returns all Q&A pairs in one call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Content language. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ejari-sa-api-294c6c19/get_faqs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>"}'
```

### list_blog_posts

List all blog posts from Ejari's blog with metadata including title, date, read time, and image. Returns the complete set of published posts in one call; no pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Content language. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ejari-sa-api-294c6c19/list_blog_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>"}'
```
