Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.signalhire.com/llms.txt

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

Use this endpoint to resolve a company name or slug to a stable numeric ID. The result can be used with other Company API endpoints. This endpoint does not consume any credits. Endpoint: GET https://www.signalhire.com/api/v1/company/findById

Request Parameters

apikey
string
required
Secret API key. See Authentication.
id
string
required
Company ID (numeric) or company slug. Examples: 1033, accenture.

Request Example

curl -X GET \
-H 'apikey: your_secret_api_key' \
'https://www.signalhire.com/api/v1/company/findById?id=accenture'

Response Example (HTTP 200)

{
    "id": 1033,
    "slug": "accenture",
    "company": "Accenture"
}
id
integer
Numeric company ID. Use this with other Company API endpoints.
slug
string
URL-friendly company identifier. Can be used interchangeably with id in other endpoints.
company
string
Company display name.

Response Codes

CodeDescription
200Company found.
403Company API access not enabled for this account.
404Company not found.
422id parameter missing.