UrActor Awards API
Category № 03

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

All parameters are path segments, not query parameters.
NameTypeDescription
name requiredstring
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 requiredstringYour API key. Issued from the developer portal.
Example: YOUR_API_KEY

Request

cURL
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.

200 OK
[
  {
    "year": "2026",
    "category": "Best Performance by an Actor in a Leading Role",
    "nomination": {
      "primary": ["Michael B. Jordan"],
      "secondary": ["Sinners"],
      "won": true
    }
  }
]

Errors

Failure modes for this endpoint.
StatusWhenBody
404No person matched the values you supplied.{ "error": "Person not found" }
403The key is missing, unknown or has been revoked.{ "error": "Forbidden - Invalid API Key" }
429More 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 }
500The archive could not be read. Safe to retry.{ "error": "Error fetching data" }