Skip to main content

Attributes

Get All Attributes

curl "https://www.filmmakers.eu/api/v1/attributes/" \
-H "Authorization: Token token=API_KEY"
Example Response
[
"accent_skill",
"accents",
"contract_types",
"dances",
"dialect_skill",
"dialects",
"drivers_licenses",
"qualification",
...
]

This endpoint retrieves all possible profile attributes that are closed lists, such as languages or nationalities, as well as attributes for credits (vita entries).

For countries, ISO 3166-1 alpha-2 codes are used (see here). For federal states (states/subdivisions), ISO 3166-2 codes are used, e.g., for Germany: https://en.wikipedia.org/wiki/ISO_3166-2:DE. Since the ISO lists are standardized (and extensive), they are not present in this endpoint for the time being.

Get Key/Value Pairs for Attributes

curl "https://www.filmmakers.eu/api/v1/attributes/xxx" \
-H "Authorization: Token token=API_KEY"
Example Response
{
"AD": "Andorran",
"AE": "United Arab Emirates",
"AF": "Afghan",
"AG": "Antigua and Barbuda",
"AL": "Albanian",
"AM": "Armenian",
"AO": "Angolan",
"AR": "Argentinean",
"AT": "Austrian",
"AU": "Australian",
...
}

This endpoint retrieves all possible key/value pairs for one of the attributes. Pass one of the supported locales (see above) as a parameter to retrieve localized values.

Contract Types Catalogue

Contract types use stable integer identifiers. Retrieve their localized display labels from the contract_types attribute:

GET https://www.filmmakers.eu/api/v1/attributes/contract_types?locale=en

Example Response
{
"100001": "DE - Theatrical",
"100002": "DE - ARD",
"100004": "DE - ZDF",
"5228": "SAG - AFTRA"
}

The optional locale parameter controls the labels and defaults to English. JSON object keys are always strings; their numeric values correspond to the integer contract_type identifiers returned by the Casting Calls API.

Qualification Catalogue

Qualifications use stable string keys. Retrieve their localized display labels from the qualification attribute:

GET https://www.filmmakers.eu/api/v1/attributes/qualification?locale=en

Example Response
{
"certification": "Certification",
"diploma": "Diploma",
"bachelors_degree": "Bachelor's degree",
"masters_degree": "Master's degree",
"magister": "Magister",
"other": "Other"
}

The optional locale parameter controls the labels and defaults to English. The keys are returned as qualification values for primary and other professional training in the Actor Profiles API.