1. Festivals
Festival API
  • Health
    • Health check
      GET
  • Festivals
    • List festivals
      GET
    • Get festival detail
      GET
    • Get top scored festivals
      GET
  • Rosters
    • Get festival roster
      GET
  • Categories
    • List categories
      GET
  • Countries
    • List available countries
      GET
  • Schemas
    • HealthResponse
    • FestivalListEntry
    • FestivalListResponse
    • FestivalDetail
    • FestivalRosterResponse
    • CategoryListResponse
    • CountryListResponse
    • CountryItem
    • ErrorResponse
  1. Festivals

Get festival detail

GET
https://festivalapi.com/v1/festivals/{id}/
Returns a full festival record including deadlines, fees, acceptance rate, past winners, programming directors, and composite score.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Festival detail.
Bodyapplication/json

🟠401
🟠402
🟠404
🟠429
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://festivalapi.com/v1/festivals//' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "id": 42,
    "name": "Sundance Film Festival",
    "year": 2026,
    "website": "https://festival.sundance.org",
    "event_dates": "January 22 – February 1, 2026",
    "event_start_date": "2026-01-22",
    "event_end_date": "2026-02-01",
    "deadline_regular": "2025-09-15",
    "deadline_late": "2025-10-15",
    "deadline_extended": null,
    "notification_date": "2025-12-01",
    "city": "Park City",
    "state": "UT",
    "country": "United States",
    "categories": [
        "Feature",
        "Short Film",
        "Documentary"
    ],
    "genres": [
        "Drama",
        "Comedy",
        "Experimental"
    ],
    "fees": {
        "regular": 85,
        "late": 110
    },
    "submission_platforms": [
        "FilmFreeway"
    ],
    "accepts_awards": true,
    "year_founded": 1978,
    "acceptance_rate": 0.02,
    "description": "Premier independent film festival founded by Robert Redford.",
    "programming_directors": [
        "Kim Yutani"
    ],
    "past_winners": [
        {
            "year": 2025,
            "film": "Example Winner",
            "director": "Jane Doe"
        }
    ],
    "composite_score": 94.5
}
Modified at 2026-07-14 22:16:25
Previous
List festivals
Next
Get top scored festivals
Built with