Discover/FilmFreeway API
live

FilmFreeway APIfilmfreeway.com

Search and retrieve film festival data from FilmFreeway: deadlines, submission categories, fees, rules, organizers, and photos via 6 structured endpoints.

Endpoint health
verified 5d ago
search_festivals_by_category
get_festival_details
get_festival_photos
search_festivals
get_festival_categories_and_fees
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the FilmFreeway API?

The FilmFreeway API provides access to film festival data across 6 endpoints, covering everything from full-text festival search to per-festival submission categories, fee schedules, rules, and photo galleries. The get_festival_details endpoint returns deadlines with ISO-formatted dates, category fees broken down by deadline tier, organizer names, and contact information for any festival identified by its slug.

Try it
Page number for pagination.
Search keyword (e.g. 'grant', 'documentary'). Omitting returns all festivals.
api.parse.bot/scraper/24cb03f5-ea57-4eba-8e6b-43bc74bc264a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/24cb03f5-ea57-4eba-8e6b-43bc74bc264a/search_festivals?page=1&query=documentary' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace filmfreeway-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""FilmFreeway SDK — discover festivals, inspect details, compare submissions."""
from parse_apis.filmfreeway_api import FilmFreeway, FilmCategory, FestivalNotFound

client = FilmFreeway()

# Search festivals by category — limit caps total items fetched
for summary in client.festivalsummaries.by_category(categories=FilmCategory.DOCUMENTARY, limit=3):
    print(summary.name, summary.location)

# Drill into the first result's full details
summary = client.festivalsummaries.search(query="Nantucket", limit=1).first()
if summary:
    festival = summary.details()
    print(festival.name, festival.url)
    for deadline in festival.deadlines:
        print(deadline.type, deadline.date, deadline.iso_date)

# Fetch a festival directly by slug and browse its photos
festival = client.festivals.get(slug="NantucketFilmFestival")
for photo in festival.photos.list(limit=3):
    print(photo.href, photo.width, photo.height)

# Get focused category/fee info via an instance method
cat_info = festival.get_categories()
for cat in cat_info.categories:
    print(cat.name, [f.fee for f in cat.fees[:2]])

# Typed error handling
try:
    client.festivals.get(slug="NonExistentFestival12345")
except FestivalNotFound as exc:
    print(f"Not found: {exc.slug}")

print("exercised: festivalsummaries.by_category / .search / .details / festivals.get / photos.list / get_categories")
All endpoints · 6 totalmissing one? ·

Full-text search over film festivals. Returns paginated summaries (up to 50 per page). Omitting the query returns all festivals ordered by relevance. Each summary carries the slug needed to fetch full details.

Input
ParamTypeDescription
pageintegerPage number for pagination.
querystringSearch keyword (e.g. 'grant', 'documentary'). Omitting returns all festivals.
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "has_more": "boolean indicating if more pages are available",
    "festivals": "array of festival summary objects with name, slug, url, location, and description_snippet"
  },
  "sample": {
    "data": {
      "page": 1,
      "has_more": true,
      "festivals": [
        {
          "url": "https://filmfreeway.com/DOCLA",
          "name": "DOC LA. Los Angeles Documentary Film Festival",
          "slug": "DOCLA",
          "location": "Los Angeles, California, United States\n\n\n              12 Years",
          "description_snippet": "Next Deadline: June 22, 2026"
        }
      ]
    },
    "status": "success"
  }
}

About the FilmFreeway API

Search and Discovery

The search_festivals endpoint accepts an optional query string and returns paginated summaries of up to 50 festivals per page. Each result includes the festival's name, slug, url, location, and description_snippet. The slug field is the key identifier passed to all detail endpoints. Omitting query returns all festivals ordered by relevance. For category-scoped searches, search_festivals_by_category accepts a comma-separated categories string, allowing you to filter festivals that accept submissions in specific categories such as documentary, short film, or animation.

Festival Details and Fees

get_festival_details is the most data-dense endpoint, returning a festival's full description, rules, awards, address, organizers array, and structured deadlines — each deadline carries a human-readable date and an iso_date for reliable date parsing. The categories array lists each submission category alongside its associated fees. When you only need fee schedules, get_festival_categories_and_fees returns the same categories structure with fees broken down per deadline tier (early, regular, final, extended) and distinguishes standard pricing from Gold Member pricing.

Rules and Photos

get_festival_rules is a lightweight endpoint that returns only the rules and terms text for a given festival slug, returning null if no rules are published — useful when building submission eligibility checkers without pulling the full detail payload. The get_festival_photos endpoint returns a photo gallery array where each object includes id, href, caption, width, height, and order fields. The array may be empty if no photos have been uploaded for that festival.

Reliability & maintenanceVerified

The FilmFreeway API is a managed, monitored endpoint for filmfreeway.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when filmfreeway.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official filmfreeway.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a deadline tracker that parses iso_date fields from get_festival_details to alert filmmakers before submission windows close.
  • Aggregate per-category fee schedules across hundreds of festivals using get_festival_categories_and_fees to help filmmakers budget their submissions.
  • Filter festivals by genre using search_festivals_by_category with categories like 'documentary' or 'animation' to build niche festival directories.
  • Create an eligibility screener that checks get_festival_rules for specific rule text relevant to runtime, language, or premiere status requirements.
  • Populate a festival discovery app with photos and descriptions by combining get_festival_photos and search_festivals results.
  • Extract organizer contact info from get_festival_details to build outreach lists for film industry directories.
  • Compare early vs. final deadline fee differences across festivals by parsing the tiered fee arrays from get_festival_categories_and_fees.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does FilmFreeway have an official public developer API?+
FilmFreeway does not publish a public developer API. The Parse API is the structured way to access FilmFreeway festival data programmatically.
How does pagination work across the search endpoints?+
search_festivals and search_festivals_by_category both return a page integer and a has_more boolean. When has_more is true, increment the page parameter to retrieve the next batch of up to 50 festival summaries.
Does the API return filmmaker or film submission records?+
No. The API covers festival-side data only: festival profiles, deadlines, categories, fees, rules, and photos. Filmmaker profiles, submitted film records, and screening selections are not included. You can fork this API on Parse and revise it to add an endpoint targeting that data if it is publicly accessible on FilmFreeway.
Are Gold Member fees consistently available for every festival's categories?+
Gold Member pricing is included in the fee objects returned by get_festival_categories_and_fees when the festival publishes it. Some festivals may only list standard fees, so the Gold Member field may be absent or null for those entries.
Does the API expose festival ratings, reviews, or past winner lists?+
Not currently. The API covers festival descriptions, deadlines, submission categories, fees, rules, organizer info, and photos. Past winner lists and user ratings are not part of any current endpoint. You can fork this API on Parse and revise it to add an endpoint for that data.
Page content last updated . Spec covers 6 endpoints from filmfreeway.com.
Related APIs in EntertainmentSee all →
criterion.com API
Browse and search the Criterion Collection's curated film catalog, explore editorial content and posts from Current magazine, and retrieve Top 10 lists and Closet Picks. Get detailed information about individual films and curated collections.
fundrazr.com API
Search and discover FundRazr crowdfunding campaigns by category, then access detailed information about campaign progress, activity, highlights, and organizer profiles. Get comprehensive insights into fundraising campaigns to track funding goals, supporter engagement, and campaign updates all in one place.
feverup.com API
Discover and search live events, exhibitions, and experiences happening in cities worldwide, filtering by categories to find concerts, shows, expos, and more that match your interests. Get detailed information about any event including schedules, descriptions, and venue details to plan your next outing.
filmaffinity.com API
Search FilmAffinity's film database by title, director, genre, year, and more. Retrieve detailed movie information including cast, crew, synopsis, ratings, and user reviews. Access top-rated lists, box office rankings, theatrical and streaming releases, and full filmographies for cast and crew members.
sundance.org API
Discover and explore Sundance Institute film grants and funding opportunities, including detailed program information, eligibility criteria, application requirements, and award details from the official Sundance portal. List all active funding programs and retrieve comprehensive details for any specific grant.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.
devpost.com API
Search and discover hackathons on Devpost by filtering based on status, keywords, and sorting options like prize money or submission deadlines. Find the perfect hackathon competition that matches your interests and timeline.
fandango.com API
Search for movies and retrieve nearby theater listings with showtimes by ZIP code and date, plus showtimes for a specific movie at nearby theaters.