# Malt — 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 discover freelancers on Malt.fr by their expertise, view detailed profile information, and get autocomplete suggestions to refine your searches. Find the right freelancer for your project with access to comprehensive professional profiles and skills data.

**Category:** Business Directories | **Website:** [malt.fr/](https://malt.fr/) | **Docs:** [parse.bot/marketplace/3eb3edef-7cb1-4f73-8a78-af7be70fbf2b/malt-fr-api](https://parse.bot/marketplace/3eb3edef-7cb1-4f73-8a78-af7be70fbf2b/malt-fr-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-malt-fr-api-3eb3edef/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### autocomplete

Get search autocomplete suggestions for a query prefix. Returns up to 15 specialty and skill suggestions that match the given prefix, useful for refining search queries before calling search_freelancers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query prefix to get suggestions for (e.g., 'dev', 'design', 'data') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-malt-fr-api-3eb3edef/autocomplete \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### get_profile

Retrieve detailed profile information for a specific freelancer by their username/alias. Returns full name, expertise headline, description, pricing, skills, languages, location, ratings, experience level, and badge status. The username corresponds to the path segment in a Malt profile URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Profile username/alias as it appears in the Malt.fr profile URL path (e.g., 'virgilerietsch', 'diegoalart') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-malt-fr-api-3eb3edef/get_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### search_freelancers

Search for freelancers by keyword or expertise on Malt.fr. Returns up to 24 profiles per page with name, headline, skills, pricing, location, ratings, and availability. Pagination metadata indicates total results and page count. Location filter narrows results to a specific city.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | City name to filter results by location (e.g., 'Paris', 'Lyon') |
| `query` | string | Yes | Search query for freelancer expertise (e.g., 'developpeur frontend', 'designer graphique', 'data scientist') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-malt-fr-api-3eb3edef/search_freelancers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","query":"<string>"}'
```
