Skip to main content

Quickstart

Get up and running with the Filmmakers API in minutes.

Prerequisites

Before you begin, you'll need an API key. Request one through our support page.

Make Your First Request

Once you have your API key, you can make your first API call. Let's retrieve a list of actor profiles:

curl "https://www.filmmakers.eu/api/v1/actor_profiles?per_page=5" \
-H "Authorization: Token token=YOUR_API_KEY"
note

Replace YOUR_API_KEY with your actual API key.

Understanding the Response

A successful response returns a JSON array of actor profiles:

[
{
"id": 12345,
"display_name": "Jane Doe",
"gender": "female",
"profile_url": "https://www.filmmakers.eu/actors/jane-doe",
"thumbnail_url": "https://...",
...
},
...
]

Pagination

List endpoints return paginated results. Check the Link header for navigation:

Link: <https://www.filmmakers.eu/api/v1/actor_profiles?page=2>; rel="next"

Use the page and per_page parameters to navigate:

curl "https://www.filmmakers.eu/api/v1/actor_profiles?page=2&per_page=25" \
-H "Authorization: Token token=YOUR_API_KEY"

See Pagination for more details.

Next Steps