Discover/11880 API
live

11880 API11880.com

Access 11880.com's German business directory via API. Search companies, retrieve contact details, opening hours, reviews, and autocomplete trades and cities.

Endpoint health
verified 3d ago
search_companies
get_trades_autocomplete
get_company_details
get_cities_autocomplete
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the 11880 API?

The 11880.com API provides 4 endpoints for querying Germany's 11880.com business directory, covering millions of company listings. Use search_companies to find businesses by keyword and location, get_company_details to retrieve full contact records including geo coordinates, opening hours, and reviews, and two autocomplete endpoints for trades and cities to power search interfaces.

Try it
Page number for pagination.
JSON string of filters to apply, e.g. {"opening_hours": "true", "rating": "4"}.
Industry or company name to search for.
City name to search in.
api.parse.bot/scraper/094c1576-eea0-42e9-8009-bb32096fbd1d/<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/094c1576-eea0-42e9-8009-bb32096fbd1d/search_companies?page=1&keyword=Restaurant&location=Berlin' \
  -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 11880-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: 11880.com Business Directory SDK — search, autocomplete, drill-down."""
from parse_apis.eleventy_eight_eighty_com_business_directory_api import (
    Directory, CompanySummary, Company, Trade, City, CompanyNotFound,
)

client = Directory()

# Discover trades matching a partial query — single-page autocomplete.
for trade in client.trades.autocomplete(query="pizz", limit=5):
    print(trade.id, trade.name)

# Discover cities matching a prefix.
for city in client.cities.autocomplete(query="muen", limit=3):
    print(city.name, city.slug, city.zipcode)

# Search for companies in Berlin — page-based pagination, capped.
listing = client.companysummaries.search(keyword="Restaurant", location="Berlin", limit=1).first()
if listing:
    print(listing.name, listing.phone, listing.address)

    # Drill into full details from the summary.
    detail = listing.details()
    print(detail.name, detail.email, detail.payment_methods)
    for hour in detail.opening_hours[:2]:
        print(hour.day_of_week, hour.opens, hour.closes)

# Direct company lookup by URL — typed error handling.
try:
    company = client.companies.get(url="https://www.11880.com/branchenbuch/berlin/071364395B107275402/babu-restaurant.html")
    print(company.name, company.address.street, company.address.city)
except CompanyNotFound as exc:
    print(f"Company not found: {exc.url}")

print("exercised: trades.autocomplete / cities.autocomplete / companysummaries.search / details / companies.get")
All endpoints · 4 totalmissing one? ·

Search for companies by keyword and location in the 11880.com directory. Returns paginated business listings with name, address, phone, and rating. The keyword matches trades or company names; the location scopes results to a city. Pagination is page-based starting at 1. An optional filters JSON string narrows results further (e.g. opening_hours, rating).

Input
ParamTypeDescription
pageintegerPage number for pagination.
filtersstringJSON string of filters to apply, e.g. {"opening_hours": "true", "rating": "4"}.
keywordstringIndustry or company name to search for.
locationstringCity name to search in.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "results": "array of company summary objects with name, detail_url, address, phone, rating, and review_count",
    "total_count_hint": "integer, number of results on the current page"
  },
  "sample": {
    "data": {
      "page": 1,
      "results": [
        {
          "name": "BABU Restaurant",
          "phone": "(030) 46994966",
          "rating": null,
          "address": "Treptower Str. 9512059Berlin(Neukoelln)",
          "detail_url": "https://www.11880.com/branchenbuch/berlin/071364395B107275402/babu-restaurant.html",
          "review_count": "5 von 5 Sternen(1 Bewertung)"
        }
      ],
      "total_count_hint": 50
    },
    "status": "success"
  }
}

About the 11880 API

Search and Company Data

The search_companies endpoint accepts a keyword (industry or company name), a location (city name), an optional filters JSON string, and a page integer for pagination. Each result object in the results array includes name, detail_url, address, phone, rating, and review_count. The total_count_hint field reflects how many results appear on the current page. Filters support parameters such as opening_hours and minimum rating to narrow results.

Company Details

get_company_details takes a url matching a detail_url from search results and returns a full company record. Fields include a structured address object (street, zip, city), phone, email, website, rating, review_count, and an opening_hours array with dayOfWeek, opens, and closes per entry. The geo object provides latitude and longitude for mapping, and the reviews array contains individual entries with author, rating, and description.

Autocomplete Endpoints

get_trades_autocomplete returns up to 10 trade or industry suggestions matching a partial query string, each with an id and name. get_cities_autocomplete returns matching German city records including name, slug, and zipcode for a partial city name query. Both endpoints support German umlauts, making it straightforward to handle inputs like "mün" for München. These are useful for building type-ahead inputs that feed into search_companies.

Reliability & maintenanceVerified

The 11880 API is a managed, monitored endpoint for 11880.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 11880.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 11880.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
3d ago
Latest check
4/4 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 German business finder that filters results by minimum rating and opening hours availability
  • Enrich a CRM with phone, email, and address data pulled from get_company_details for German companies
  • Map competitor locations using geo coordinates (latitude/longitude) returned by get_company_details
  • Aggregate and analyze customer reviews for businesses in a specific German city or trade category
  • Power a type-ahead search field with trade and city suggestions using the two autocomplete endpoints
  • Monitor opening hours changes for a list of businesses tracked by their 11880.com detail URLs
  • Generate leads by scraping contact details for businesses in a given trade and location combination
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 11880.com offer an official developer API?+
11880.com does not publish an official public developer API or developer program. This Parse API provides structured access to the directory data.
What does get_company_details return beyond what search_companies provides?+
search_companies returns a summary per listing: name, address, phone, rating, review_count, and a detail_url. get_company_details expands this with email, website, geo coordinates (latitude and longitude), a structured opening_hours array with per-day open and close times, and a full reviews array with individual author, rating, and description fields.
How does pagination work in search_companies?+
The endpoint accepts a page integer parameter. The response includes a page field echoing the current page and a total_count_hint reflecting the number of results on that page — not a global total. To iterate through all results, increment page until total_count_hint drops to zero or fewer results are returned than expected.
Does the API cover businesses outside Germany?+
No. 11880.com is a German-language directory and all listings, city names, and trade categories are Germany-focused. Coverage is limited to German businesses and locations. If you need to extend this to another country's business directory, you can fork the API on Parse and revise it to target a different source.
Can I retrieve a list of all available trade categories without a partial query?+
Not currently. get_trades_autocomplete requires a partial query string and returns up to 10 matching suggestions; there is no endpoint that dumps the full trade taxonomy. You can fork the API on Parse and revise it to add an endpoint that enumerates all available trade categories.
Page content last updated . Spec covers 4 endpoints from 11880.com.
Related APIs in B2b DirectorySee all →
gelbeseiten.de API
Search for businesses on Gelbe Seiten (gelbeseiten.de) by keyword and location, and retrieve full business details including contact information, opening hours, categories, and reviews.
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.
yandex.ru API
Search for businesses on Yandex Maps and instantly access their names, addresses, phone numbers, websites, social media links, hours of operation, and categories. Get detailed company information to find local services, verify business details, or build comprehensive business directories.
krak.dk API
Search for businesses and people in Denmark, retrieve detailed information like contact details and company profiles, and look up phone numbers to identify callers or report spam statistics. Find what you're looking for in the Danish business and person directory with instant access to company details, personal information, and caller identification data.
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.
drimble.nl API
Search and access detailed business information from Drimble.nl, including company addresses, SBI classifications, and activity descriptions. Find specific companies or browse listings to get comprehensive details about Dutch businesses.
local.ch API
Search Swiss businesses and retrieve their contact details, addresses, phone numbers, opening hours, and website URLs directly from the local.ch directory. Look up companies by name, category, or location, and perform reverse phone number lookups.
arztsuche.116117.de API
Find therapists and doctors across Germany by postal code, radius, or medical specialty, getting detailed results with names, addresses, distances, and contact information. Quickly locate healthcare providers that match your needs using Germany's official 116117 doctor search portal.