UrActor Awards API
Category № 01

The complete archive

Every ceremony from 1929 to 2026.

GEThttps://api.uractor.com/oscars/apikey={apikey}

Returns the entire archive as a single object keyed by ceremony year. This is a large response — several megabytes — so prefer a narrower endpoint when you can, and cache the result if you genuinely need all of it.

Parameters

All parameters are path segments, not query parameters.
NameTypeDescription
apikey requiredstringYour API key. Issued from the developer portal.
Example: YOUR_API_KEY

Request

cURL
curl "https://api.uractor.com/oscars/apikey=YOUR_API_KEY"

Resolved path: /oscars/apikey=YOUR_API_KEY

Response

An object whose keys are ceremony years and whose values are arrays of categories.

200 OK
{
  "1929": [
    {
      "category": "Best Actor in a Leading Role",
      "nominations": [ … ]
    }
  ],
  "2026": [
    {
      "category": "Best Picture",
      "nominations": [ … ]
    }
  ]
}

Errors

Failure modes for this endpoint.
StatusWhenBody
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" }