# Verbformen — 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 for German words and instantly access their translations, proficiency levels (A1-C2), grammatical categories, and IPA pronunciations to enhance your language learning. Perfect for understanding vocabulary difficulty, finding word meanings, and perfecting your German pronunciation all in one place.

**Category:** Education | **Website:** [verbformen.com/](https://verbformen.com/) | **Docs:** [parse.bot/marketplace/0fe37274-1f87-4019-9e61-e0fd28e96eb3/verbformen-com-api](https://parse.bot/marketplace/0fe37274-1f87-4019-9e61-e0fd28e96eb3/verbformen-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-verbformen-com-api-0fe37274/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search

Search for German words by keyword and/or exact CEFR level (A1-C2). The level parameter is an exact match filter; a word only appears in results if it is classified at that specific level. Returns grammatical info, translations, IPA pronunciations, and detail URLs. Results may be empty if no words match the query at the specified level.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `level` | string | No | Exact CEFR level filter. Accepted values: A1, A2, B1, B2, C1, C2. |
| `limit` | integer | No | Maximum number of results to return. Omitting returns all matching results. |
| `query` | string | No | Search keyword or starting letter (e.g. 'haben', 'A'). Omitting returns all words at the given level. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-verbformen-com-api-0fe37274/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"level":"<string>","limit":"<integer>","query":"<string>"}'
```
