DACH Company Intelligence API
The data layer for DACH company intelligence.
Frontman unifies German, Austrian, and Swiss commercial registers behind a single REST API. Query structured company data, enrich it on demand with contacts and metadata, and ship without scraping.
DACH coverage
Handelsregister for Germany and Austria plus Moneyhouse for Switzerland, unified behind a single schema.
Async enrichment
Website discovery, email verification, sector classification, and owner signals — queued and polled by job ID.
Cost transparent
Every provider call is logged with wholesale and customer price. Usage and cost breakdowns ship with the API.
Built for integration
Typed responses, one error shape, stable keys.
Every endpoint returns the same envelope. Async work surfaces as job IDs you poll. Errors carry a stable code and a request ID that lines up with our logs. Keys are tier-scoped with documented rate and quota limits.
$ curl https://api.frontman.dev/v1/companies?country=DE&limit=1 \
-H "Authorization: Bearer fm_live_xxx"
{
"data": [{
"id": "3f8d2b4e-1a7c-4e9f-b2d1-5a6c8e0f3b71",
"company_name": "Müller Metallbau GmbH",
"city": "München",
"country": "DE",
"legal_form": "GmbH",
"website": "https://mueller-metallbau.example"
}],
"meta": { "total": 1247, "limit": 1, "has_more": true }
}