Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns a single company, including firmographics and the number of contacts you hold for it.
cURL
curl --request GET \ --url https://backend.leadey.ai/v1/companies/{id} \ --header 'Authorization: Bearer <token>'
import requests url = "https://backend.leadey.ai/v1/companies/{id}" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://backend.leadey.ai/v1/companies/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": { "id": "cmp_4Wd7hLpA", "name": "Northwind Logistics", "domain": "northwind.co.uk", "industry": "Logistics and supply chain", "employeeCount": 240, "fundingStage": "series_b", "country": "United Kingdom", "city": "Manchester", "linkedinUrl": "https://www.linkedin.com/in/priyaraman", "createdAt": "2026-07-14T09:12:44.000Z" } }
{ "error": { "message": "Invalid or revoked API key.", "details": null } }
{ "error": { "message": "Lead not found", "details": null } }
Your API key, created in the Leadey dashboard under Settings → API Keys. Send it as Authorization: Bearer leadey_sk_live_….
Authorization: Bearer leadey_sk_live_…
The resource id.
The requested company.
Show child attributes