Discover/Gemeindebund API
live

Gemeindebund APIgemeindebund.at

Access Austrian municipality data, mayor details, news, events, regional associations, and staff from the Gemeindebund.at platform via a structured REST API.

Endpoint health
verified 1d ago
get_news_article
get_team_members
get_landesverbaende
get_events
search_site
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the Gemeindebund API?

The Gemeindebund.at API provides access to 7 endpoints covering Austrian municipal data drawn from the official Austrian Association of Municipalities website. The get_communities endpoint alone returns structured records for every Austrian community, including mayor name, salutation, role, state, district, population, and community code. Other endpoints surface news articles, calendar events, team members, regional associations (Landesverbände), and a full-text site search.

Try it

No input parameters required.

api.parse.bot/scraper/b954a194-173e-4f88-8899-702308ca917f/<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/b954a194-173e-4f88-8899-702308ca917f/get_communities' \
  -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 gemeindebund-at-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.

from parse_apis.gemeindebund_at_api import Gemeindebund, Community, ArticleSummary, Article, TeamMember, Association, Event, SearchResult

client = Gemeindebund()

# Search for news about mayors
for result in client.searchresults.search(query="Bürgermeister"):
    print(result.title, result.link, result.date)

# List communities and inspect mayor details
for community in client.communities.list(limit=5):
    print(community.name, community.state, community.population, community.mayor.full_name)

# Browse paginated news articles and drill into full content
for summary in client.articlesummaries.list(search="Pflege", limit=3):
    print(summary.title, summary.date, summary.excerpt)
    article = summary.details()
    print(article.content, article.author)

# List regional associations
for assoc in client.associations.list():
    print(assoc.name, assoc.email, assoc.website)

# List upcoming events
for event in client.events.list():
    print(event.title, event.date, event.link)

# List team members
for member in client.teammembers.list():
    print(member.name, member.role, member.email)
All endpoints · 7 totalmissing one? ·

Returns all Austrian communities with their names, types, mayor details (name, salutation, role), state, district, population, and community code. Data sourced from the official interactive Bürgermeisterkarte. Returns approximately 2092 communities in a single response.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of communities",
    "communities": "array of community objects with keys: name, type, mayor (object with salutation, role, first_name, last_name, full_name), state, district, population, code"
  },
  "sample": {
    "data": {
      "total": 2092,
      "communities": [
        {
          "code": 10101,
          "name": "Eisenstadt",
          "type": "Stadtgemeinde",
          "mayor": {
            "role": "Bürgermeister",
            "full_name": "Thomas STEINER",
            "last_name": "STEINER",
            "first_name": "Thomas",
            "salutation": "Herrn"
          },
          "state": "Burgenland",
          "district": "Eisenstadt(Stadt)",
          "population": "16 116"
        }
      ]
    },
    "status": "success"
  }
}

About the Gemeindebund API

Community and Leadership Data

The get_communities endpoint returns the full dataset from the Gemeindebund's Bürgermeisterkarte — one record per Austrian community. Each object includes name, type, state, district, population, community_code, and a nested mayor object with salutation, role, first_name, last_name, and full_name. This is the primary reference for pairing community identifiers with current mayoral leadership across all nine Austrian states.

News and Content

get_news_list supports paginated browsing of Gemeindebund news with optional search keyword filtering and category filtering by WordPress category ID. It returns id, title, date, link, excerpt, and slug per article. Pass a slug or post_id from those results to get_news_article to retrieve the full article content as HTML, along with author and link. The search_site endpoint performs a keyword query across all site posts and returns up to 20 results with title, link, and date.

Events and Organizational Structure

get_events returns the Gemeindebund calendar with event id, title, link, date, and slug. get_landesverbaende returns all nine Austrian regional municipal associations, each with name, email, website, and details covering leadership contacts. get_team_members returns Gemeindebund staff with name, role, and email.

Coverage Scope

All endpoints are read-only and require no input parameters except get_news_list (pagination/filter params are optional), get_news_article (needs slug or post_id), and search_site (requires query). Data reflects the Austrian national municipal association's public-facing content, so coverage is Austria-only and limited to what the Gemeindebund publishes.

Reliability & maintenanceVerified

The Gemeindebund API is a managed, monitored endpoint for gemeindebund.at — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when gemeindebund.at 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 gemeindebund.at 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
1d ago
Latest check
7/7 endpoints 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
  • Build a searchable directory of Austrian mayors using community name, state, district, and mayor full name from get_communities.
  • Monitor Gemeindebund policy news by polling get_news_list with category or keyword filters and fetching full text via get_news_article.
  • Populate a municipal governance dashboard with population figures and community codes for all Austrian municipalities.
  • Aggregate upcoming municipal events from get_events into a regional government calendar application.
  • Map regional association contact details from get_landesverbaende to build a directory of Landesverbände leadership and websites.
  • Feed search_site results into an internal knowledge base for Austrian local government research.
  • Enrich a B2B contact dataset with Gemeindebund staff names, roles, and emails from get_team_members.
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 Gemeindebund.at have an official developer API?+
No. Gemeindebund.at does not publish an official public developer API or documented data feed. This Parse API provides structured access to data from the site.
What does get_communities return and can I filter it by state or district?+
It returns all Austrian communities in a single response, each with name, type, state, district, population, community code, and a nested mayor object. The endpoint accepts no filter parameters — state or district filtering would need to be done client-side on the returned array. You can fork this API on Parse and revise it to add server-side filtering parameters.
Does the API return historical mayor data or past news archives?+
The community data reflects the current Bürgermeisterkarte and does not include historical mayor records. News articles are paginated via get_news_list and go back as far as the Gemeindebund site publishes, but there is no dedicated archive or date-range filter parameter. You can fork this API on Parse and revise it to add date-range filtering if needed.
Does get_news_article return images or attached media from the article?+
The endpoint returns article content as an HTML string in the content field, along with title, date, author, link, and the WordPress id. Embedded images within the HTML may be present in the content, but there is no dedicated media or image array in the response. You can fork this API on Parse and revise it to parse and expose media fields separately.
Does the API cover municipal data for Liechtenstein, South Tyrol, or other German-speaking regions outside Austria?+
No. Coverage is limited to Austrian municipalities as listed by the Austrian Gemeindebund. The API does not include municipalities from other countries or regions. You can fork this API on Parse and revise it to point at additional sources for cross-border coverage.
Page content last updated . Spec covers 7 endpoints from gemeindebund.at.
Related APIs in Government PublicSee all →
offenevergaben.at API
Search and explore Austrian public procurement contracts, including details about contracting authorities, suppliers, and product categories. Track government spending by accessing comprehensive information about individual contracts, the organizations that issue them, and the vendors that supply them.
ard.de API
Access breaking news, search articles, and browse the latest stories from Germany's leading public broadcasters ARD and Tagesschau, with filtering by region and topic. Retrieve full article details and discover media content from their digital archives.
municipalities.co.za API
Find comprehensive information about South African municipalities including their financial performance, service delivery metrics, contact details, and employment data all in one place. Search across provinces, access municipal tenders and job vacancies, and explore demographic and resource information for any municipality.
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.
bundesanzeiger.de API
Search and retrieve official German business announcements, financial disclosures, and company filings from the Bundesanzeiger with full-text search and category filtering. Access detailed publication information and financial reports to monitor corporate announcements and regulatory filings.
job.at API
Search and browse jobs on Austria's job.at platform, view detailed job listings with salary info and company details, and use autocomplete features to refine your search by location and keywords. Discover featured positions, explore job categories, and find related job titles to expand your career opportunities.
jobs.ams.at API
Search and browse job listings from Austria's AMS alle jobs platform with advanced filtering options. View detailed job information, explore featured categories including green jobs and apprenticeships, and retrieve autocomplete suggestions for job titles. Access real-time job data filtered by location, employment type, working hours, education level, and more.
willhaben.at API
Search and browse listings across Austria's largest classifieds platform. Access marketplace goods, real estate (for sale and rent), cars, jobs, and full listing details — all from a single API.