Returns a paginated list of CRM company records in your workspace.
Required scope: crm:read or crm:write
curl --request GET \
--url https://api.zeeg.me/v2/crm/companies \
--header 'Authorization: Bearer <token>'{
"success": true,
"status": 200,
"data": {
"pagination": {
"totalItems": 1,
"perPage": 10,
"currentPage": 1,
"lastPage": 1,
"hasPreviousPage": false,
"hasNextPage": false
},
"companies": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Acme Corp",
"domain": "acme.com",
"description": null,
"websiteUrl": "https://acme.com",
"primaryLocation": null,
"industries": [],
"socials": {
"linkedin": null,
"twitter": null,
"facebook": null,
"instagram": null
},
"customAttributes": {},
"createdAt": "2025-01-15T09:00:00+00:00",
"updatedAt": "2025-01-15T09:00:00+00:00"
}
]
}
}Returns a paginated list of CRM company records in your workspace. Results are sorted byDocumentation Index
Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt
Use this file to discover all available pages before exploring further.
created_at ascending by default. Use sortBy and sortOrder to change the sort.
customAttributes.Page number.
x >= 1Number of records per page.
1 <= x <= 100Field to sort by.
Sort direction.
asc, desc OK
true
200
Hide child attributes
Hide child attributes
Unique identifier for the company record.
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Display name of the company.
"Acme Corp"
Primary domain. Unique within the workspace. Used as the matching attribute for upsert.
"acme.com"
Free-text description of the company.
"A global provider of anvils and gadgets."
Company website URL.
"https://acme.com"
Primary location or address.
"Phoenix, AZ"
List of industry IDs assigned to the company.
["technology"]Social profile links.
Key/value pairs for custom attributes defined on the companies object.
{}ISO 8601 timestamp when the record was created.
"2025-01-15T09:00:00+00:00"
ISO 8601 timestamp when the record was last updated.
"2025-06-01T12:00:00+00:00"
curl --request GET \
--url https://api.zeeg.me/v2/crm/companies \
--header 'Authorization: Bearer <token>'{
"success": true,
"status": 200,
"data": {
"pagination": {
"totalItems": 1,
"perPage": 10,
"currentPage": 1,
"lastPage": 1,
"hasPreviousPage": false,
"hasNextPage": false
},
"companies": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Acme Corp",
"domain": "acme.com",
"description": null,
"websiteUrl": "https://acme.com",
"primaryLocation": null,
"industries": [],
"socials": {
"linkedin": null,
"twitter": null,
"facebook": null,
"instagram": null
},
"customAttributes": {},
"createdAt": "2025-01-15T09:00:00+00:00",
"updatedAt": "2025-01-15T09:00:00+00:00"
}
]
}
}