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

> Find synonyms, antonyms, related words, and usage examples for any word instantly. Look up the daily word of the day to expand your vocabulary every day.

**Category:** Education | **Website:** [thesaurus.com/](https://thesaurus.com/) | **Docs:** [parse.bot/marketplace/571af6d0-bec8-4181-b94e-46418eca7af0/thesaurus-com-api](https://parse.bot/marketplace/571af6d0-bec8-4181-b94e-46418eca7af0/thesaurus-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-thesaurus-com-api-571af6d0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_word_details

Retrieves synonyms, antonyms, usage examples, and related words for a given word. Each sense groups synonyms and antonyms by part of speech and definition, with a numeric similarity score indicating closeness. Related words are drawn from a broader set of associated terms. The total_words_count reflects the headline count displayed on the page. Paginates as a single page — all senses are returned in one response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `word` | string | Yes | The word to look up (e.g. 'happy', 'run', 'beautiful'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thesaurus-com-api-571af6d0/get_word_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"word":"<string>"}'
```

### get_word_of_the_day

Retrieves the current Word of the Day from Dictionary.com (linked from Thesaurus.com). Returns the headword, its definition, part of speech, an example sentence, pronunciation (phonetics string and optional audio URL), and an explanatory paragraph about the word's meaning and origin. The response reflects whichever word is featured on the current calendar day.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thesaurus-com-api-571af6d0/get_word_of_the_day \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
