Search API
Perform complex searches across company data with multiple filters. Export results as CSV for offline analysis and integration with external tools.
POST/v1/search
Advanced Search
Perform complex queries with multiple filter criteria.
Request Body
- Name
query- Type
- string
- Description
- Fuzzy search on company name
- Name
countries- Type
- array
- Description
- Country codes: NO, SE, DK, FI
- Name
industries- Type
- array
- Description
- NACE industry IDs
- Name
cities- Type
- array
- Description
- City names
- Name
legal_forms- Type
- array
- Description
- AS, AB, APS, Oy, etc.
- Name
verified- Type
- boolean
- Description
- Website verified
- Name
has_website- Type
- boolean
- Description
- Has website URL
- Name
has_contacts- Type
- boolean
- Description
- Has associated contacts
- Name
website_query- Type
- string
- Description
- Search within website URL
- Name
min_employees- Type
- integer
- Description
- Minimum employee count
- Name
max_employees- Type
- integer
- Description
- Maximum employee count
- Name
founded_after- Type
- date
- Description
- YYYY-MM-DD
- Name
founded_before- Type
- date
- Description
- YYYY-MM-DD
- Name
limit- Type
- integer
- Description
- Max results (default 50, max 1000)
- Name
cursor- Type
- string
- Description
- Pagination cursor
Request
POST
/v1/searchResponse
POST/v1/export
Export CSV
Export search results as CSV for offline use. Same request body as advanced search.
Response
CSV file with company data including:
- Company name
- Registry ID
- Address
- City
- Website
- Employee count
- Industry
- Contact emails
Request
POST
/v1/exportSearch Parameters
Available Filters
| Parameter | Type | Description |
|---|---|---|
query | string | Fuzzy search on company name |
countries | array | Country codes: NO, SE, DK, FI |
industries | array | NACE industry IDs |
cities | array | City names |
legal_forms | array | AS, AB, APS, Oy, etc. |
verified | boolean | Website verified |
has_website | boolean | Has website URL |
has_contacts | boolean | Has associated contacts |
website_query | string | Search within website URL |
min_employees | integer | Minimum employee count |
max_employees | integer | Maximum employee count |
founded_after | date | YYYY-MM-DD |
founded_before | date | YYYY-MM-DD |
limit | integer | Max results (default 50, max 1000) |
cursor | string | Pagination cursor |
CSV exports are limited to 10,000 records per request. For larger datasets, use multiple requests with cursor pagination.