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

> Get German verb conjugations, parts of speech, and usage frequency from Duden's comprehensive database. Quickly look up how to conjugate any German verb across all tenses and moods.

**Category:** Education | **Website:** [duden.de/](https://duden.de/) | **Docs:** [parse.bot/marketplace/c4117148-f5cf-4405-878c-060bc8c1294f/duden-de-api](https://parse.bot/marketplace/c4117148-f5cf-4405-878c-060bc8c1294f/duden-de-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-duden-de-api-c4117148/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_conjugation

Get conjugation data for a German verb from duden.de. Returns conjugation tables organized by mood (Indikativ, Konjunktiv I, Konjunktiv II, Imperativ, Infinite Formen) and tense. For ambiguous verbs with multiple meanings (e.g. 'sein', 'haben'), the scraper automatically resolves to the first available conjugation entry.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `verb` | string | Yes | The German verb to conjugate (e.g. 'gehen', 'machen', 'sein'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-duden-de-api-c4117148/get_conjugation \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"verb":"<string>"}'
```
