Skip to main content
GET
/
v1
/
companies
/
search
Search companies by name, ticker, or external ID
curl --request GET \
  --url https://api.ivory.finance/v1/companies/search \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "<string>",
    "cik": "<string>",
    "external_id": "<string>",
    "external_id_type": "<string>",
    "country_code": "<string>",
    "company_name": "<string>",
    "ticker": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.ivory.finance/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Query Parameters

q
string
required

Company name, ticker, or external ID (partial match)

Minimum string length: 1
country
string | null

Filter by ISO country code, e.g. US, GB, AU

limit
integer
default:20
Required range: 1 <= x <= 100

Response

Successful Response

id
string | null
cik
string | null
external_id
string | null
external_id_type
string | null
country_code
string | null
company_name
string | null
ticker
string | null