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

> Browse projects and freelancers on Mostaql.com's Arabic marketplace, view detailed project information and freelancer profiles, and explore available project categories. Find the right talent or opportunities that match your skills and requirements.

**Category:** Marketplaces | **Website:** [mostaql.com/](https://mostaql.com/) | **Docs:** [parse.bot/marketplace/83b0d6a0-d0c0-4bae-b81a-0eae332c303d/mostaql-com-api](https://parse.bot/marketplace/83b0d6a0-d0c0-4bae-b81a-0eae332c303d/mostaql-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-mostaql-com-api-83b0d6a0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_freelancer_profile

Fetch a freelancer's full public profile including name, headline, bio, skills, and stats such as project completion rate and ratings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Freelancer username (from list_freelancers results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mostaql-com-api-83b0d6a0/get_freelancer_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### get_project_details

Fetch full details of a single project by its numeric ID, including title, description, budget, duration, skills, owner info, and offers received.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `project_id` | string | Yes | Numeric project ID (from list_projects results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mostaql-com-api-83b0d6a0/get_project_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"project_id":"<string>"}'
```

### list_freelancers

Fetch paginated list of freelancers with optional search query. Returns freelancer summaries including username, name, and professional title. Each page returns up to 25 freelancers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search query to filter freelancers by keyword, skill, or job title. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mostaql-com-api-83b0d6a0/list_freelancers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```

### list_project_categories

Return the list of project categories available as filters for the list_projects endpoint. Returns all 9 categories with their slug IDs and Arabic display names.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mostaql-com-api-83b0d6a0/list_project_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_projects

Fetch paginated list of open projects with optional search keyword, category filter, and sort order. Returns project summaries including ID, title, URL, and post time. Each page returns up to 25 projects.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category filter slug. |
| `keyword` | string | No | Search keyword to filter projects by title or description. |
| `page` | integer | No | Page number for pagination. |
| `sort` | string | No | Sort order for project listing. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mostaql-com-api-83b0d6a0/list_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","keyword":"<string>","page":"<integer>","sort":"<string>"}'
```
