Discover/Gelbe Seiten API
live

Gelbe Seiten APIgelbeseiten.de

Search gelbeseiten.de by keyword and location. Get business contact info, opening hours, categories, and reviews via 2 structured endpoints.

This API takes change requests — .
Endpoint health
verified 5d ago
search_businesses
get_business_detail
2/2 passing latest checkself-healing
Endpoints
2
Updated
28d ago

What is the Gelbe Seiten API?

The Gelbe Seiten API provides access to Germany's Yellow Pages directory through 2 endpoints, returning business listings with contact details, opening hours, customer reviews, and category data. Use search_businesses to query by keyword and location across the full gelbeseiten.de index, then pass the returned uuid to get_business_detail for a complete business record including email, website, and structured opening hours.

Try it
The page number to retrieve.
The keyword or category to search for (e.g., 'steuerberater', 'autohaus', 'restaurant').
The location to search in (e.g., 'hamburg', 'berlin', 'münchen').
api.parse.bot/scraper/8db9e6fb-e973-409d-adcf-6c5e10667165/<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/8db9e6fb-e973-409d-adcf-6c5e10667165/search_businesses?page=1&what=steuerberater&where=hamburg' \
  -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 gelbeseiten-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.

"""Gelbe Seiten API — search German businesses and retrieve full details."""
from parse_apis.gelbe_seiten_api import GelbeSeiten, BusinessNotFound

client = GelbeSeiten()

# Search for tax consultants in Hamburg — limit caps total items fetched.
for biz in client.businesses.search(what="steuerberater", where="hamburg", limit=5):
    print(biz.name, biz.address, biz.phone)

# Drill down: take the first result and get full details.
first = client.businesses.search(what="restaurant", where="berlin", limit=1).first()
if first:
    detail = first.details()
    print(detail.name, detail.email, detail.website)
    for oh in detail.opening_hours:
        print(oh.day, oh.hours)
    for cat in detail.categories:
        print(cat)

# Typed error handling: catch BusinessNotFound for an invalid uuid.
try:
    client.businesses.get(uuid="nonexistent-uuid-12345")
except BusinessNotFound as exc:
    print(f"Business not found: {exc.uuid}")

print("exercised: businesses.search / business.details / businesses.get / BusinessNotFound")
All endpoints · 2 totalmissing one? ·

Full-text search over the Gelbe Seiten business directory by keyword and location. Returns paginated results with basic contact info per listing. Page 1 returns up to 50 results; subsequent pages return 10. Each item includes a uuid usable with get_business_detail for full information.

Input
ParamTypeDescription
pageintegerThe page number to retrieve.
whatrequiredstringThe keyword or category to search for (e.g., 'steuerberater', 'autohaus', 'restaurant').
whererequiredstringThe location to search in (e.g., 'hamburg', 'berlin', 'münchen').
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "items": "array of business listing objects with uuid, name, address, phone, and url",
    "total_count": "integer, total number of results found"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "url": "https://www.gelbeseiten.de/gsbiz/27d74d63-ae41-470c-8e1d-61a894e38510",
          "name": "Dipl.-Kauffr. Diana Habelt, Steuerberaterin",
          "uuid": "27d74d63-ae41-470c-8e1d-61a894e38510",
          "phone": "040 67 04 90 40",
          "address": "Am Stadtrand 56, 22047 Hamburg (Tonndorf)"
        }
      ],
      "total_count": 932
    },
    "status": "success"
  }
}

About the Gelbe Seiten API

Searching the Directory

The search_businesses endpoint accepts two required parameters: what (a keyword or category such as steuerberater or restaurant) and where (a German city or region such as hamburg or münchen). Results are paginated — page 1 returns up to 50 listings, subsequent pages return 10 each. The total_count field in the response tells you the full result set size. Each item in the items array includes a uuid, name, address, phone, and a url back to the gelbeseiten.de listing. The uuid is the key you need for the detail endpoint.

Business Detail Records

Passing a uuid to get_business_detail returns the complete record for a single business. Beyond the basic contact fields (name, phone, address), the response includes email and website when the business has published them (both return an empty string when absent), an opening_hours array with per-day day and hours objects, a categories array of classification strings, and a reviews array where each review carries author, text, and rating.

Coverage and Scope

gelbeseiten.de covers businesses registered in Germany and is one of the primary German-language local business directories. The directory spans all major sectors — professional services, automotive, food, healthcare, retail, and more — with listings that include both sole traders and larger companies. Results are tied to German city and region names as understood by the directory's own location resolver.

Reliability & maintenanceVerified

The Gelbe Seiten API is a managed, monitored endpoint for gelbeseiten.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when gelbeseiten.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 gelbeseiten.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
5d ago
Latest check
2/2 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 lead-generation tool that queries search_businesses by trade category and city, then enriches each result via get_business_detail to collect emails and websites.
  • Aggregate opening hours for a specific business type (e.g., pharmacies or locksmiths) across multiple German cities.
  • Monitor customer reviews for a set of businesses by polling reviews from get_business_detail on a schedule.
  • Compile a local competitor map for a given keyword and city using name, address, and categories fields.
  • Validate or enrich an existing German business database by cross-referencing phone numbers and addresses from the directory.
  • Power a location-aware German business finder that surfaces contact details and hours for end users.
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 gelbeseiten.de offer an official developer API?+
Gelbe Seiten does not publish a documented public developer API for third-party access to its directory data.
What does `get_business_detail` return that `search_businesses` does not?+
search_businesses returns basic fields only: uuid, name, address, phone, and url. get_business_detail adds email, website, categories, opening_hours (structured per-day objects), and reviews with author, text, and rating per entry. Fetching full detail requires a separate call per business using the uuid from the search results.
Is there a quirk to the pagination in `search_businesses`?+
Yes. Page 1 returns up to 50 results, but pages 2 and onward return 10 results each. Plan your pagination logic accordingly — do not assume uniform page sizes across the result set.
Can I filter search results by business category or radius rather than just keyword and city?+
Not currently. The search_businesses endpoint accepts only what (keyword or category name as a string) and where (location string), with no radius, bounding-box, or structured category filter parameters. You can fork this API on Parse and revise it to add a filtering endpoint if your use case requires more granular geographic or category control.
Does the API cover businesses outside Germany?+
No. gelbeseiten.de is a German-market directory, and the where parameter resolves against German cities and regions. Searches for locations outside Germany will return no results. You can fork this API on Parse and revise it to point at a different regional Yellow Pages source if you need non-German coverage.
Page content last updated . Spec covers 2 endpoints from gelbeseiten.de.
Related APIs in B2b DirectorySee all →
yellowpages.com API
Search and retrieve business listings, contact info, hours, categories, and customer reviews from YellowPages.com. Browse by category or location across the US.
yellowpages.ca API
Search for businesses across Canada and retrieve detailed information including contact details, ratings, reviews, and website data. Supports keyword and location-based discovery of local businesses for research, analysis, and data enrichment use cases.
yellowpages.in API
Search for businesses across India and discover detailed information like contact details, addresses, and services from YellowPages.in's comprehensive business directory. Find relevant business categories with autocomplete suggestions to quickly locate the leads and companies you're looking for.
yellowpages.com.au API
Search Australian businesses by category to find contact details, addresses, and emails, then retrieve comprehensive business information for any listing. Perfect for building lead lists, verifying business information, or discovering local service providers across Australia.
yelp.com API
Search for businesses on Yelp and access their detailed information including reviews, photos, and ratings all from one interface. Get comprehensive business data like hours, contact details, and customer feedback without visiting Yelp directly.
11880.com API
Search and discover millions of German businesses from 11880.com's comprehensive directory, instantly accessing company contact details, locations, and trade information. Get intelligent autocomplete suggestions for trades and cities to refine your business searches and find exactly who you're looking for.
yellowpages-uae.com API
Search and discover UAE businesses with instant access to contact details, locations, and branch information from the Yellow Pages UAE directory. Find companies by name, get detailed business profiles, explore multiple branches, and browse available cities all in one place.
seccionamarilla.com.mx API
Search for Mexican businesses and get their detailed contact information, hours, and locations from Sección Amarilla's comprehensive directory. Browse popular business categories to discover services and companies across Mexico.