/intelligence
Coverage 1.83m domains enriched, 1.27m mapped to 1.52m companies. Coverage is strongest for active trading companies with a website.
Returns the operating profile for a company: a plain-English description of what it does, the offerings it sells, who it sells to, and how it delivers. Built by matching a verified domain to the legal entity and extracting structured facets from the website. This is the layer a SIC code cannot give you — it separates a careers-software vendor from a university that happens to mention careers.
Possible values for org_kind
A single value per company. Full-corpus distribution: 68% services_provider, 21.5% product_vendor, 3.1% charity_nonprofit, 2.8% education_institution.
product_vendorservices_providereducation_institutiontraining_providerpublic_bodycharity_nonprofitmembership_associationrecruiter_staffingmedia_publishermarketplace_aggregatorpersonal_or_dormant
Input
| Parameter | Description | Required |
|---|---|---|
key | Your API key. May also be sent as a bearer token or X-API-Key header. | Required |
company_number | Companies House company number, with or without the UK- prefix. One of company_number or domain is required. | One required |
domain | Look up by website instead, e.g. northgateanalytics.example — resolved through the verified domain index. When both are given, domain selects one of a multi-site company's websites. | One required |
Example request
https://api.ukdatalayer.com/v1/intelligence?key=YOUR_KEY&company_number=00000042Output
| Field | Type | Description |
|---|---|---|
company_id | string | The matched legal entity. |
company_name | string | Registered legal name of the matched entity. |
domain | string | Verified domain the intelligence was derived from. |
short_desc | string | null | One-line description of the business. |
summary | string | null | Full-sentence description, averaging around 250 characters. |
org_kind | string | null | Organisation type. See possible values above. Rolling out — null where the classification pass has not covered the domain yet. |
sector | string | null | Normalised sector label, e.g. Mechanical, Electrical & HVAC Services. |
offerings | string[] | Products and services the company sells. |
ideal_customers | string[] | Who the company targets, as described on its own site. Rolling out — may be empty. |
confirmed_customers | string[] | Named customers the website references. Rolling out — may be empty. |
customer_segments | string[] | Normalised segments: schools_k12, colleges_fe, universities_he, students_direct, employers_hr, government_public, smb, enterprise, consumers. Rolling out — may be empty. |
delivery | string[] | saas_platform, mobile_app, api_data, services_consultancy, content_courses, physical_products or marketplace. Rolling out — may be empty. |
business_model | string[] | software, services, products, manufacturing, platform or marketplace. |
market | string[] | b2b, b2c or both. |
emails | string[] | Contact emails published on the website. |
phone_numbers | string[] | Contact phone numbers published on the website. |
domain_rating | number | null | Third-party domain authority score, 0-100. Rolling out — null where not yet fetched. |
entity_match | object | verified flag and confidence score for the domain-to-company match. |
Example response
{
"status": "success",
"credits_used": 1,
"data": {
"company_id": "UK-00000042",
"company_name": "NORTHGATE ANALYTICS LTD",
"domain": "northgateanalytics.example",
"short_desc": "Revenue forecasting platform for subscription businesses.",
"summary": "Northgate Analytics builds a revenue forecasting and reporting platform for subscription businesses, connecting billing and CRM data so finance teams can model renewals, churn and cash collection.",
"org_kind": "product_vendor",
"sector": "Finance Software",
"offerings": [
"revenue forecasting", "churn analytics", "billing reconciliation",
"board reporting", "API access"
],
"ideal_customers": [
"Finance teams at subscription businesses",
"SaaS CFOs and RevOps leaders"
],
"confirmed_customers": ["Harbourline Software", "Vale & Pike Group"],
"customer_segments": ["smb", "enterprise"],
"delivery": ["saas_platform", "api_data"],
"business_model": ["software"],
"market": ["b2b"],
"domain_rating": 41,
"entity_match": { "verified": true, "confidence": 0.97 }
}
}Notes
- Where a company has no verified domain, the endpoint returns status "no_data" rather than guessing. Around 206k enriched domains have no usable summary and are excluded.
- A small number of companies map to more than one domain. The response returns the highest-confidence match; pass domain explicitly to select a specific one.