Base URL: https://api.orcheus.com
All requests (except /api/health) require a Bearer token in the Authorization header.
# Live key (billable) Authorization: Bearer orch_live_xxxxxxxxxxxx # Test key (free, sandboxed) Authorization: Bearer orch_test_xxxxxxxxxxxx
Generate API keys from your dashboard.
/v1/companies/search?q={query}Search UK companies by name or registration number. Returns normalised results from Companies House.
/v1/companies/{companyNumber}Get full company details by Companies House number, including filing history and officers.
/v1/addresses/search?postcode={postcode}Search UK addresses by postcode. Returns a list of address options with UDPRN identifiers.
/v1/addresses/{addressId}Retrieve a full structured address by provider ID (UDPRN).
/v1/usageGet current billing period usage summary for the authenticated organisation.
/api/healthHealth check. Returns API status and version. No authentication required.
// Success
{
"success": true,
"requestId": "req_abc123",
"data": { ... }
}
// Error
{
"success": false,
"requestId": "req_abc123",
"error": {
"code": "COMPANY_NOT_FOUND",
"message": "Company not found"
}
}Create an account, generate an API key, and make your first call in minutes.