Everything a person was nominated for
Every nomination naming a person, across all ceremonies.
GEThttps://api.uractor.com/person/name={name}/apikey={apikey}
Searches every ceremony for nominations naming this person, in either the primary or the secondary field. Matching is exact and case-sensitive, so pass the name exactly as the Academy records it. Because a film title can also appear in these fields, this endpoint doubles as a title search across all years.
Parameters
| Name | Type | Description |
|---|---|---|
name required | string exact match | The name to look for, URL-encoded. Matched exactly against each entry in the primary and secondary arrays. Example: Michael B. Jordan |
apikey required | string | Your API key. Issued from the developer portal. Example: YOUR_API_KEY |
Request
curl "https://api.uractor.com/person/name=Michael%20B.%20Jordan/apikey=YOUR_API_KEY"Resolved path: /person/name=Michael%20B.%20Jordan/apikey=YOUR_API_KEY
Response
An array of matches, each carrying the year and category it came from.
[
{
"year": "2026",
"category": "Best Performance by an Actor in a Leading Role",
"nomination": {
"primary": ["Michael B. Jordan"],
"secondary": ["Sinners"],
"won": true
}
}
]Errors
| Status | When | Body |
|---|---|---|
| 404 | No person matched the values you supplied. | { "error": "Person not found" } |
| 403 | The key is missing, unknown or has been revoked. | { "error": "Forbidden - Invalid API Key" } |
| 429 | More than 60 requests in a minute from one key. Wait for the number of seconds in Retry-After. | { "error": "Too Many Requests", "limit": "60 requests per minute", "retryAfter": 42 } |
| 500 | The archive could not be read. Safe to retry. | { "error": "Error fetching data" } |