Discover/Duden API
live

Duden APIduden.de

Look up German verb conjugations, part of speech, and corpus frequency from Duden. Covers all moods and tenses via a single endpoint.

Endpoint health
verified 7d ago
get_conjugation
1/1 passing latest checkself-healing
Endpoints
1
Updated
21d ago

What is the Duden API?

The Duden.de API exposes 1 endpoint — get_conjugation — that returns full conjugation tables for any German verb across five grammatical moods, along with part of speech and Duden corpus frequency. A single call to get_conjugation with a verb like gehen or sein returns structured tables keyed by mood and tense, making it straightforward to build German language tools, grammar checkers, or learning apps without manually parsing Duden's dictionary.

Try it
The German verb to conjugate (e.g. 'gehen', 'machen', 'sein').
api.parse.bot/scraper/ea3b0ee0-daeb-4252-931c-e1cc412af61c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ea3b0ee0-daeb-4252-931c-e1cc412af61c/get_conjugation?verb=gehen' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace duden-de-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Duden Verb Conjugation SDK — look up conjugation tables for German verbs."""
from parse_apis.duden_verb_conjugation_api import Duden, Conjugation, VerbNotFound

client = Duden()

# Fetch conjugation for a common irregular verb
conj = client.conjugations.get(verb="gehen")
print(f"Verb: {conj.verb}, Type: {conj.wortart}")

# Access the konjugation dict — keys are moods, values are lists of TenseEntry
for mood, entries in conj.konjugation.items():
    print(f"  Mood: {mood}, Tenses: {len(entries)}")
    break  # just show first mood

# Handle a verb that doesn't exist in the database
try:
    client.conjugations.get(verb="xyznotaverb")
except VerbNotFound as exc:
    print(f"Not found: {exc.verb}")

# Fetch an ambiguous verb (multiple meanings) — resolves automatically
sein = client.conjugations.get(verb="sein")
print(f"Verb: {sein.verb}, Type: {sein.wortart}, Frequency: {sein.haeufigkeit}")

print("exercised: conjugations.get (regular verb / not-found error / ambiguous verb)")
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
verbrequiredstringThe German verb to conjugate (e.g. 'gehen', 'machen', 'sein').
Response
{
  "type": "object",
  "fields": {
    "verb": "string — the queried verb",
    "wortart": "string or null — part of speech (e.g. 'unregelmäßiges Verb', 'schwaches Verb')",
    "haeufigkeit": "string or null — frequency description from Duden corpus",
    "konjugation": "object — conjugation tables keyed by mood (Indikativ, Konjunktiv I, Konjunktiv II, Imperativ, Infinite Formen), each containing an array of tense entries with tempus and formen fields"
  },
  "sample": {
    "data": {
      "verb": "gehen",
      "wortart": "unregelmäßiges Verb",
      "haeufigkeit": null,
      "konjugation": {
        "Imperativ": [
          {
            "formen": {
              "2. Person Plural [ihr]": "geht!",
              "2. Person Singular [du]": "geh, gehe!"
            }
          }
        ],
        "Indikativ": [
          {
            "formen": {
              "du": "gehst",
              "ich": "gehe",
              "ihr": "geht",
              "sie": "gehen (sich)",
              "wir": "gehen",
              "er/sie/es": "geht (sich)"
            },
            "tempus": "Präsens"
          }
        ],
        "Infinite Formen": [
          {
            "formen": [
              "zu gehen"
            ],
            "bezeichnung": "Infinitiv mit zu"
          }
        ]
      }
    },
    "status": "success"
  }
}

About the Duden API

What the API Returns

The get_conjugation endpoint accepts a single required parameter — verb (string) — and returns a JSON object with four top-level fields: verb, wortart, haeufigkeit, and konjugation. The wortart field carries the grammatical classification from Duden, such as unregelmäßiges Verb (irregular verb) or schwaches Verb (weak verb). The haeufigkeit field reflects the frequency descriptor assigned by the Duden corpus, useful for distinguishing common vocabulary from rare forms.

Conjugation Table Structure

The konjugation object is keyed by grammatical mood: Indikativ, Konjunktiv I, Konjunktiv II, Imperativ, and Infinite Formen. Each mood key maps to an object of tense keys (e.g. Präsens, Präteritum, Perfekt), and each tense maps to person-indexed forms. This mirrors how Duden presents conjugation tables — organized first by mood, then by tense, covering both finite and non-finite forms.

Handling Ambiguous Verbs

High-frequency verbs like sein and haben have multiple dictionary entries on Duden. The API automatically resolves ambiguous verbs to their primary verb meaning, so you consistently receive a complete conjugation table rather than an error or partial response. No additional disambiguation parameter is needed from the caller.

Reliability & maintenanceVerified

The Duden API is a managed, monitored endpoint for duden.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when duden.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official duden.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Populate conjugation tables in a German language learning app using the konjugation object keyed by mood and tense
  • Flag irregular verbs in a grammar checker by reading the wortart field for unregelmäßiges Verb
  • Sort vocabulary lists by usage frequency using the haeufigkeit corpus descriptor
  • Generate grammar exercises for all six persons across Indikativ Präsens and Konjunktiv II forms
  • Build an autocomplete tool that shows correctly conjugated verb forms as a user types
  • Cross-reference Duden part-of-speech data against other German NLP datasets using the wortart field
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Duden offer an official developer API?+
No. Duden does not publish a public developer API or documented REST endpoint for verb conjugation data. This Parse API provides structured access to that data.
What does `get_conjugation` return for the mood 'Infinite Formen'?+
The Infinite Formen key in the konjugation object contains non-finite verb forms such as the infinitive, present participle (Partizip I), and past participle (Partizip II). These are returned under their standard German tense labels, consistent with how Duden presents them.
Does the API cover noun declensions or adjective comparisons?+
Not currently. The API covers verb conjugation tables, part of speech, and corpus frequency for German verbs. Noun declension tables and adjective comparison forms are not included. You can fork this API on Parse and revise it to add an endpoint targeting those Duden dictionary sections.
Are all German verbs covered, including separable and reflexive verbs?+
Coverage depends on what Duden indexes. Common separable verbs (e.g. aufgehen) and reflexive verbs listed on Duden should return results. Highly obscure or archaic verbs not indexed by Duden will return null fields or an empty conjugation object. The verb field in the response always echoes back the queried input so you can confirm what was looked up.
Does the API return example sentences or definitions alongside conjugation data?+
Not currently. The response fields are scoped to wortart, haeufigkeit, and the konjugation table. Definitions, usage examples, and synonyms are not part of the current response shape. You can fork this API on Parse and revise it to capture those additional Duden dictionary sections.
Page content last updated . Spec covers 1 endpoint from duden.de.
Related APIs in EducationSee all →
dwds.de API
Look up German words with detailed definitions, pronunciations, and usage examples, or explore curated word lists organized by proficiency level. Search vocabulary, discover random entries, and learn the featured word of the day to build your German language skills.
verbformen.com API
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.
usito.usherbrooke.ca API
Look up French-Canadian word definitions, search for specific terms, and access complete conjugation tables for verbs all in one place. Browse the entire USITO dictionary by letter or explore verb conjugation models to perfect your Quebec French.
thesaurus.com API
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.
evergabe-online.de API
Search and retrieve public tender opportunities from Germany's e-Vergabe platform by keywords, contract types, CPV codes, and publication dates. Access detailed tender information and discover the latest procurement opportunities across construction and other sectors.
dictionary.cambridge.org API
Look up word definitions, pronunciations, translations, synonyms, and example sentences from Cambridge Dictionary. Search and browse thousands of words, get daily word recommendations, and access specialized business or American English dictionaries.
wordreference.com API
Search for word translations across multiple languages using WordReference's comprehensive dictionary database. Retrieve detailed meanings, usage contexts, grammatical information, and example sentences. Access public vocabulary collections and word-of-the-day features.
govdata.de API
Search and retrieve official German government datasets including demographics, economic indicators, and business statistics, or browse available organizations and categories to discover relevant open data resources. Filter results by high-value datasets and access site statistics to learn about recently updated information from Germany's Federal Open Data Portal.