Discover/Verbformen API
live

Verbformen APIverbformen.com

Access German word data from Verbformen.com: CEFR levels (A1-C2), grammatical categories, IPA pronunciations, translations, and detail URLs via one search endpoint.

Endpoint health
verified 14h ago
search
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the Verbformen API?

The Verbformen.com API exposes German vocabulary data through a single search endpoint that returns up to 6 response fields per word — including CEFR level, grammatical category, IPA pronunciation, translations, and a direct detail URL. You can filter by exact proficiency level (A1 through C2), search by keyword or starting letter, and control result volume with a limit parameter, making it straightforward to build vocabulary tools, flashcard systems, or language-learning pipelines.

Try it
Exact CEFR level filter. Accepted values: A1, A2, B1, B2, C1, C2.
Maximum number of results to return. Omitting returns all matching results.
Search keyword or starting letter (e.g. 'haben', 'A'). Omitting returns all words at the given level.
api.parse.bot/scraper/32c65e70-02a1-4a5e-9910-513b48a477f5/<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/32c65e70-02a1-4a5e-9910-513b48a477f5/search?level=A1&limit=3&query=haben' \
  -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 verbformen-com-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: Verbformen German Dictionary — search words by level and keyword."""
from parse_apis.verbformen_german_dictionary_api import Verbformen, Level, WordNotFound

client = Verbformen()

# Search A1-level words containing "haben" — limit caps total items fetched.
for word in client.words.search(query="haben", level=Level.A1, limit=5):
    print(word.word, word.level, word.translations[:3])

# Drill into a single B1 word to inspect its IPA and category.
entry = client.words.search(query="schreiben", level=Level.B1, limit=1).first()
if entry:
    print(entry.word, entry.category, entry.ipa[:2], entry.url)

# Typed error handling for a query unlikely to match.
try:
    result = client.words.search(query="xyznonexistent", level=Level.C2, limit=1).first()
    if result:
        print(result.word, result.translations[:2])
    else:
        print("No words matched the query at C2 level")
except WordNotFound as exc:
    print(f"Not found: {exc}")

print("exercised: words.search with Level enum, .first(), typed error catch")
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
levelstringExact CEFR level filter. Accepted values: A1, A2, B1, B2, C1, C2.
limitintegerMaximum number of results to return. Omitting returns all matching results.
querystringSearch keyword or starting letter (e.g. 'haben', 'A'). Omitting returns all words at the given level.
Response
{
  "type": "object",
  "fields": {
    "data": "array of word objects each containing word, level, category, translations, ipa, and url"
  },
  "sample": {
    "data": {
      "data": [
        {
          "ipa": [
            "/ˈhaːbən/",
            "/hat/"
          ],
          "url": "https://www.verbformen.com/conjugation/haben.htm",
          "word": "haben",
          "level": "A1",
          "category": "verb · auxiliary verb 'haben' · irregular verb · sometimes also: · transitive verb · intransitive verb · with reflexive pronouns (sich)",
          "translations": [
            "have",
            "possess",
            "have with one",
            "be available",
            "be free"
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the Verbformen API

What the API Returns

The search endpoint returns an array of word objects, each carrying: word (the German term), level (CEFR classification: A1–C2), category (grammatical type such as noun, verb, or adjective), translations (English equivalents), ipa (International Phonetic Alphabet transcription), and url (a link to the full Verbformen.com entry for that word). The status field at the top level confirms whether the request succeeded.

Filtering and Querying

The search endpoint accepts three optional parameters. query accepts a keyword — a full word like haben or a starting letter like A — and filters results to matching entries. level applies an exact-match CEFR filter; specifying B1 returns only words classified at B1, not adjacent levels. limit caps the number of returned word objects; omitting it returns all matching results, which can be a large set when filtering by level alone without a query string.

Coverage and Scope

Verbformen.com classifies German vocabulary across all six CEFR bands (A1, A2, B1, B2, C1, C2). The API reflects this classification directly, so each word object has a discrete, queryable level rather than a score or range. IPA data enables phonetic features in language-learning apps without requiring a separate pronunciation source. The url field points to Verbformen.com's detail page for each entry, where conjugation tables and additional grammar notes are available — though that detail-page content is not returned by the current API.

Reliability & maintenanceVerified

The Verbformen API is a managed, monitored endpoint for verbformen.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when verbformen.com 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 verbformen.com 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
14h 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
  • Generate graded vocabulary lists for each CEFR level to feed into spaced-repetition flashcard decks.
  • Filter German words by level to build level-appropriate reading exercises for A1–C2 learners.
  • Use the ipa field to add pronunciation guides to language-learning apps without a separate phonetics database.
  • Look up translations and category to auto-tag imported word lists with part-of-speech and English meaning.
  • Build a vocabulary difficulty checker that classifies user-submitted German text by querying each word's CEFR level.
  • Populate autocomplete suggestions in a German tutoring app by querying words starting with a given letter via the query parameter.
  • Export structured vocabulary data (word, level, translation) for curriculum design or academic research on German learner vocabulary.
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 Verbformen.com have an official developer API?+
Verbformen.com does not publish an official public developer API. This Parse API provides structured access to the vocabulary and grammar data available on the site.
How does the `level` filter behave — does it return words at or below a given CEFR level?+
The level parameter is an exact match. Passing B1 returns only words classified at B1; it does not include A1 or A2 words. To collect vocabulary across multiple levels, send separate requests for each level value you need.
Does the API return conjugation tables or full declension data for German words?+
Not currently. The search endpoint returns the base word form, grammatical category, CEFR level, translations, and IPA — it does not include conjugation paradigms or declension tables. The url field points to each word's Verbformen.com detail page where that information appears. You can fork this API on Parse and revise it to add an endpoint that retrieves conjugation or declension data from the detail page.
What happens if I omit both `query` and `level`?+
Both parameters are optional, but omitting both may return the full word dataset. Using limit is advisable in that case to avoid unexpectedly large responses. Combining query and level together narrows results to words that match the keyword AND belong to that exact CEFR band.
Is audio or spoken pronunciation data available alongside the IPA field?+
Not currently. The API provides IPA transcriptions in the ipa field but does not return audio file URLs or speech data. You can fork this API on Parse and revise it to add audio URL retrieval if that data is accessible on the source pages.
Page content last updated . Spec covers 1 endpoint from verbformen.com.
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.
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.
duden.de API
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.
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.
amazon.de API
Search Amazon.de for products, retrieve detailed product information, customer reviews, seller and offer data, bestseller lists, and autocomplete suggestions.
vinted.de API
Search and browse secondhand items on Vinted.de with customizable filters to find exactly what you're looking for. Get detailed product information including descriptions, categories, colors, and pricing to make informed purchasing decisions.
freelancer.de API
Search and discover freelancers on freelancer.de by their skills and expertise, then view detailed profiles with ratings, experience metrics, and portfolio information. Find the perfect freelancer for your project by browsing skill sets and comparing professional backgrounds all in one place.
wlw.de API
Search for B2B suppliers and manufacturers on wlw.de, view detailed company profiles with contact information and product catalogs, and discover featured businesses and products. Find the right industrial suppliers and vendors quickly by browsing company details and product listings across Germany's largest B2B marketplace.