Data
Company / organization facts from Wikidata API
Resolve an organization name to structured corporate facts from Wikidata (keyless) — inception date, founders, headquarters, country, industries, products, CEO, parent/subsidiaries, employee count, stock exchange, ticker, and website. Answers 'who founded X', 'where is X headquartered', 'what industry is X in', 'how many employees does X have'.
Price$0.01per request
MethodPOST
Route/v1/data/kb-company
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
datawikidatacompanyorganizationbusinesscorporatefactsentity
API URL
Integration docshttps://x402.hexl.dev/v1/data/kb-companyExample request
{
"query": "Apple Inc."
}Example response
{
"id": "Q312",
"name": "Apple Inc.",
"description": "American multinational technology company",
"inception": "1976-04-01",
"founders": [
"Steve Jobs",
"Steve Wozniak",
"Ronald Wayne"
],
"headquarters": "Cupertino",
"country": "United States",
"industries": [
"technology"
],
"employeeCount": 164000,
"website": "https://www.apple.com",
"url": "https://www.wikidata.org/wiki/Q312"
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"Apple Inc.",
"Q312"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}