companies
Get company record by ID
people
companies
companies
Get company record by ID
GET
/
companies
/
{companyId}
curl --request GET \
--url https://api.klipycrm.com/api/v1/companies/{companyId} \
--header 'X-KLIPY-API-KEY: <api-key>'
{
"success": true,
"data": {
"id": "<string>",
"name": "<string>",
"domain": "<string>",
"domainAliases": [
"<string>"
],
"description": "<string>",
"primaryIndustry": "<string>",
"altIndustries": [
"<string>"
],
"industryGroup": "<string>",
"tags": [
"<string>"
],
"arr": "<string>",
"numEmployees": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"linkedin": "<string>",
"twitter": "<string>",
"createdBy": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"lastInteraction": "2023-11-07T05:31:56Z"
}
}
Authorizations
Path Parameters
Unique ID of the company record
Response
200
application/json
Success
Unique ID of company record
Company name
Company domain
Alternative domains for the company
Company description
Primary industry of the company
Alternative industries the company operates in
Industry group classification
Tags associated with the company
Annual recurring revenue range
Number of employees range
Company address
City where the company is located
State where the company is located
Country where the company is located
LinkedIn profile URL
Twitter profile URL
ID of the user who created this company record
Timestamp when the company record was created
Timestamp of the last interaction with this company
curl --request GET \
--url https://api.klipycrm.com/api/v1/companies/{companyId} \
--header 'X-KLIPY-API-KEY: <api-key>'
{
"success": true,
"data": {
"id": "<string>",
"name": "<string>",
"domain": "<string>",
"domainAliases": [
"<string>"
],
"description": "<string>",
"primaryIndustry": "<string>",
"altIndustries": [
"<string>"
],
"industryGroup": "<string>",
"tags": [
"<string>"
],
"arr": "<string>",
"numEmployees": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"linkedin": "<string>",
"twitter": "<string>",
"createdBy": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"lastInteraction": "2023-11-07T05:31:56Z"
}
}