Overview
OpenCorporates is the world's largest open database of companies, covering corporate entities and directors across more than 130 countries. An API key is required for most endpoints, though some basic lookups allow limited free access. It is useful for due diligence, compliance research, and building tools that track corporate relationships.
Beginner Tip
Start with a simple company search at https://api.opencorporates.com/v0.4/companies/search?q=COMPANY_NAME&api_token=YOUR_API_KEY. The free tier allows a limited number of requests per day, so cache results when possible.
Available Data
Example Response
{
"name": "Japan",
"capital": "Tokyo",
"population": 125800000,
"region": "Asia",
"languages": [
"Japanese"
],
"flag": "https://flagcdn.com/jp.svg",
"currencies": [
{
"code": "JPY",
"name": "Japanese yen"
}
]
} Field Reference
results.companies List of matching company objects company.name Registered legal name of the company company.company_number Official registration number in the jurisdiction company.jurisdiction_code Two or three-letter code identifying the country/state of registration (e.g., "us_de") company.incorporation_date Date the company was officially incorporated company.current_status Current status of the company, e.g., "Active", "Dissolved" Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "http://api.opencorporates.com/documentation/API-Reference";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Black History Facts
⭐ Beginner's PickThe Black History Facts API gives you access to one of the largest databases of Black history facts on the web.
CARTO
CARTO is a geospatial platform API that provides location intelligence and data analysis tools for mapping and prediction.
Enigma Public
Enigma Public is a platform that aggregates a broad collection of public datasets from government and other sources into a single searchable API.
Joshua Project
The Joshua Project API provides data on people groups around the world, focusing on those with the fewest followers of Christ for missionary research purposes.
Kaggle
Kaggle provides programmatic access to create and interact with datasets, notebooks, and connect with kaggle via REST API.