Python starter kit for the Registrum API — structured UK company data built on Companies House.
pip install requestsimport requests
API_KEY = "rg_live_YOUR_KEY_HERE"
BASE_URL = "https://api.registrum.co.uk/v1"
res = requests.get(
f"{BASE_URL}/company/00445790",
headers={"X-API-Key": API_KEY},
)
print(res.json())Free tier: 50 calls/month, no credit card required.
The Registrum API enriches raw Companies House data with:
- Structured financials — turnover, net assets, employees in clean GBP values
- Director networks — 2-degree board traversal to find connected entities
- Intelligent caching — 24h company data, 7-day financials, resilient during CH outages
- Fuzzy search — company name → enriched profile in one call
Full documentation: api.registrum.co.uk/docs
Examples in this repo are MIT licensed. Data is sourced under the Open Government Licence v3.0.