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

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/search

Response


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/export

Search Parameters

Available Filters

ParameterTypeDescription
querystringFuzzy search on company name
countriesarrayCountry codes: NO, SE, DK, FI
industriesarrayNACE industry IDs
citiesarrayCity names
legal_formsarrayAS, AB, APS, Oy, etc.
verifiedbooleanWebsite verified
has_websitebooleanHas website URL
has_contactsbooleanHas associated contacts
website_querystringSearch within website URL
min_employeesintegerMinimum employee count
max_employeesintegerMaximum employee count
founded_afterdateYYYY-MM-DD
founded_beforedateYYYY-MM-DD
limitintegerMax results (default 50, max 1000)
cursorstringPagination cursor

Was this page helpful?