Skip to main content
GET
/
companies
/
search
Search Company Name
curl --request GET \
  --url https://app.tryspecter.com/api/v1/companies/search \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "1a2b3c4d5e6g1a2b3c4d5e6g",
    "name": "Hedgehog Analytics",
    "domain": "hedgehog_analytics.com",
    "hq": {
      "city": "London",
      "state": "England",
      "country": "United Kingdom",
      "region": "Europe"
    },
    "tagline": "Hedgehog Analytics future data-driven sales company.",
    "founded_year": 2019
  }
]

Authorizations

X-API-Key
string
header
required

Path Parameters

companyId
string
required

The ID of the company being requested

Query Parameters

query
string
required

A term to filter the companies by.

Response

The list of basic company information

name
string
required

The main public name for the organization.

Example:

"Hedgehog Analytics"

hq
object
required

Location information about the companies HQ.

id
string

The Specter ID for this company, can be used in other endpoints

Example:

"1a2b3c4d5e6g1a2b3c4d5e6g"

domain
string

The domain of the website, can have a sub-domain.

Example:

"hedgehog_analytics.com"

tagline
string

A concise description that highlights what the company does.

Example:

"Hedgehog Analytics future data-driven sales company."

founded_year
number

The year that the company was founded.

Example:

2019

I