Skip to main content
POST
This endpoint is synchronous and does not consume credits.Unlike the enrichment and Lead Finder APIs, there is no request_id and nothing to poll: the company profile comes back in the same response.
Send company_domain, company_linkedin_url, or both. At least one is required, otherwise the call is rejected with 422.

Authentication

This endpoint accepts the key either in the X-API-Key header, like every other endpoint, or as an api_key attribute in the body. The header is the recommended form: it keeps the key out of your request payloads and out of your logs.
This is also the endpoint to use when a Lead Finder search turns out to be a single company lookup: that case is rejected with a 422. See Errors.

What you get back

The response mirrors the company_* block of the Lead Finder payload, so the same parsing code works on both. A few fields deserve a note:
Every other company_* key from the Lead Finder payload is present in the response and always null. They are kept for payload compatibility, so do not read anything into them.Landbase specific attributes such as revenue, is_b2b and technologies_used are not returned by this endpoint. You can still filter on them through Lead Finder.

Authorizations

X-API-Key
string
header
required

Body

application/json

Company to look up

At least one of company_domain or company_linkedin_url is required. You can send both.

company_domain
string

Company website or domain.

Example:

"microsoft.com"

company_linkedin_url
string

Company LinkedIn page URL.

Example:

"https://www.linkedin.com/company/microsoft"

api_key
string

Your API key. Only needed if you do not send the X-API-Key header.

Response

Company found.

success
boolean
Example:

true

data
object

The company profile. Fields below carry data; every other company_* key from the Lead Finder payload is still present and always null, kept for payload compatibility. Landbase-only attributes such as revenue, is_b2b and technologies_used are not returned here.