Skip to main content
POST
/
v2
/
company-resolver
/
discovery
Discover Company
curl --request POST \
  --url https://api.revenuebase.ai/v2/company-resolver/discovery \
  --header 'Content-Type: application/json' \
  --header 'x-key: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "result_count": 1000,
  "headquarters_state": "<string>",
  "headquarters_country": "<string>",
  "headquarters_city": "<string>",
  "headquarters_street": "<string>",
  "headquarters_zip": "<string>"
}
'
{
  "companies": [
    {
      "rbid": "<string>",
      "company_name": "<string>",
      "similar_score": 123,
      "about_us": "<string>",
      "headquarters_street": "<string>",
      "headquarters_city": "<string>",
      "headquarters_state": "<string>",
      "headquarters_zip": "<string>",
      "headquarters_country": "<string>"
    }
  ]
}

Authorizations

x-key
string
header
required

Your API key. Get one in the dashboard under Settings → API Keys.

Body

application/json
keyword
string
required
result_count
integer
default:1000
headquarters_state
string | null
headquarters_country
string | null
headquarters_city
string | null
headquarters_street
string | null
headquarters_zip
string | null

Response

Successful Response

companies
Company · object[]
required