Company search
To optimize user experience, we recommend using our company search API, which allows customers to quickly locate the company they represent by either company name or company ID. Please note that private companies are not available in the sandbox environment.
- Example Request
- Example Response
curl -X GET "https://api.sandbox.ledyer.com/v1/headless/search/companies?q=ledyer&country=SE"
Path parameters
country
stringCountry code such as SE
, FI
etc (ISO 3166-1 alpha-2).
q
stringWhat to search for, either company name or company id. This parameter supports partial matches for autocomplete functionality.
{
"country": "SE",
"companies": [
{
"companyId": "559311-3714",
"companyName": "Ledyer AB"
},
{
"companyId": "556472-4192",
"companyName": "Ledbergs Elektriska Aktiebolag"
},
{
"companyId": "556172-5291",
"companyName": "Ledertex Aktiebolag"
},
...
]
}