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.

Returns detailed information about a company. Each successful call consumes one company data credit.
Endpoint: GET https://www.signalhire.com/api/v1/company/info

Request Parameters

apikey
string
required
Secret API key. See Authentication.
id
string
required
Company ID (numeric) or company slug. Use Find Company to resolve a company name to an ID.

Request Example

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

Response Example (HTTP 200)

HTTP/2 200
Content-Type: application/json
X-Credits-Left: 49
{
    "name": "Accenture",
    "linkedInId": "1033",
    "industry": "Information Technology and Services",
    "description": "Accenture is a global professional services company...",
    "founded": 1989,
    "logo": "https://media.licdn.com/dms/image/C560BAQHx.../company-logo_200_200/...",
    "url": "https://www.linkedin.com/company/accenture",
    "website": "http://www.accenture.com",
    "phone": null,
    "type": "Public Company",
    "staffCount": 546636,
    "staffCountRange": 10001,
    "staffingCompany": false,
    "specialities": [
        "Management Consulting",
        "Systems Integration and Technology",
        "Business Process Outsourcing",
        "Application and Infrastructure Outsourcing"
    ],
    "confirmedLocations": [
        {
            "country": "IE",
            "city": "Dublin 2",
            "line1": "Grand Canal Harbour",
            "headquarter": true,
            "streetAddressOptOut": false
        },
        {
            "country": "US",
            "geographicArea": "California",
            "city": "San Francisco",
            "postalCode": "94105",
            "line1": "415 Mission Street",
            "line2": "Floor 31-34",
            "headquarter": false,
            "streetAddressOptOut": false
        }
    ]
}

Response Fields

name
string
Company display name.
linkedInId
string
Company ID.
industry
string | null
Primary industry category.
description
string | null
Company description.
founded
integer | null
Year the company was founded.
URL of the company logo.
url
string | null
LinkedIn company page URL.
website
string | null
Company website URL.
phone
string | null
Company phone number.
type
string | null
Company type (e.g. "Public Company", "Private Company").
staffCount
integer | null
Approximate number of employees.
staffCountRange
integer | null
Employee range bucket identifier.
staffingCompany
boolean
Whether the company is a staffing agency.
specialities
array of strings
List of company specialities. May be empty.
confirmedLocations
array
List of confirmed office locations. Each item may contain country, city, geographicArea, postalCode, line1, line2, description, headquarter, streetAddressOptOut. All fields are string | boolean | null.

Response Codes

CodeDescription
200Company data returned. One company data credit consumed.
402No company data credits remaining.
403Company API access not enabled for this account.
404Company not found.
422id parameter missing.