Data
Actor film filmography (Wikidata) API
Resolve an actor by name and return their complete feature-film filmography from Wikidata: film title, release year, character role(s) and Wikidata id, one row per film and sorted newest first (Wikidata). Answers 'films Keanu Reeves was in', 'Tom Hanks movie list', 'what character did an actor play in a film'.
Price$0.01per request
MethodPOST
Route/v1/data/screen-actor-filmography
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datafilmactorwikidatafilmographymoviesrolesscreen
API URL
Integration docshttps://x402.hexl.dev/v1/data/screen-actor-filmographyExample request
{
"name": "Keanu Reeves",
"limit": 2
}Example response
{
"query": "Keanu Reeves",
"wikidataId": "Q43203",
"wikidataUrl": "https://www.wikidata.org/wiki/Q43203",
"found": true,
"filmCount": 2,
"filmography": [
{
"title": "John Wick",
"year": 2014,
"roles": [
"John Wick"
],
"wikidataId": "Q190525"
},
{
"title": "The Matrix",
"year": 1999,
"roles": [
"Neo"
],
"wikidataId": "Q83495"
}
]
}Input schema
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"examples": [
"Keanu Reeves"
]
},
"limit": {
"type": "number",
"default": 50
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}