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

> Look up French words to instantly access definitions, etymology, synonyms, usage examples, and related words from the Larousse dictionary. Search and explore French vocabulary to deepen your language understanding and expand your word knowledge.

**Category:** Education | **Website:** [www.larousse.fr/dictionnaires/francais-monolingue](https://www.larousse.fr/dictionnaires/francais-monolingue) | **Docs:** [parse.bot/marketplace/498faa57-545d-4d55-87e9-17a4a145630e/larousse-fr-api](https://parse.bot/marketplace/498faa57-545d-4d55-87e9-17a4a145630e/larousse-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-larousse-fr-api-498faa57/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_definition

Look up a French word in the Larousse dictionary and return its full entry including all definitions, part of speech, etymology, synonyms, usage examples, and nearby words. A single word may have multiple entries (e.g. noun and adjective forms). Returns input_not_found when the word does not exist in the dictionary.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `word` | string | Yes | French word to look up. Accented characters are supported. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-larousse-fr-api-498faa57/get_definition \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"word":"<string>"}'
```

### search_words

Search for French words in the Larousse dictionary. Returns the closest matching entry and nearby words alphabetically. Useful for discovering words or finding correct spelling.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query - a French word or prefix to look up. |

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