With the Autocomplete API Endpoint, you can get a short list of suggested companies based on a particular input.
Use case
An example use case is for companies with a white-label implementation of Ocean, who want to suggest Lookalike inputs. You can see an example implementation on the Ocean platform, when you add a name in the "Lookalike search" input field:
Step-by-step guide
Here's a step-by-step guide to make an API call to the Autocomplete API Endpoint, using Postman.
Click on + in your workspace to add a new call.
Ensure the request type is set to POST
Copy and paste the link below into the Enter URL or paste text field, where you replace XXX with your API token (need help to find your API token?)
Ensure you add Content-Type: application/json in your Headers.
In the Body, parse in "name" what the search input should be. If you want the suggested companies to have a primary location in particular countries, you can parse an extra filter called "countryFilters" to narrow the list down. Below is an example:
{
"name": "ocea",
"countryFilters": [
"dk",
"se"
]
}
Ensure you choose JSON in the Body, before hitting Send and make your call.
That's it! Now you can find all information related to this company
πΈ Credit usage: Calling this endpoint costs 0.2 credits per returned result.
π Did your subscription start before February 2026 or do you have a custom plan? Then you might be on our legacy plan. See this support article for more details (only accessible for legacy customers).







