Data
Person facts from Wikidata API
Resolve a person's name to structured biographical facts from Wikidata (keyless) — birth/death dates and places, gender, nationality, occupations, employers, education, awards, and positions held, with human-readable labels. Answers 'when was X born', 'what is X's occupation', 'what nationality is X', 'where did X go to school'.
Price$0.01per request
MethodPOST
Route/v1/data/kb-person
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
datawikidatapersonbiographyknowledge-graphfactspeopleentity
API URL
Integration docshttps://x402.hexl.dev/v1/data/kb-personExample request
{
"query": "Albert Einstein"
}Example response
{
"id": "Q937",
"name": "Albert Einstein",
"description": "German-born theoretical physicist",
"birthDate": "1879-03-14",
"deathDate": "1955-04-18",
"birthPlace": "Ulm",
"nationality": [
"Switzerland",
"United States"
],
"occupations": [
"theoretical physicist",
"university teacher"
],
"awards": [
"Nobel Prize in Physics"
],
"wikipedia": "https://en.wikipedia.org/wiki/Albert_Einstein",
"url": "https://www.wikidata.org/wiki/Q937"
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"Albert Einstein",
"Q937"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}