# Svenskfilmdatabas — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Browse upcoming Swedish films currently in production with detailed information like cast, crew, and production status, filtering and sorting results to find exactly what you're looking for. Get comprehensive details about any film in development from Sweden's official film database.

**Category:** Entertainment | **Website:** [www.svenskfilmdatabas.se/sv/film-i-produktion/?sortby=chrono_desc&film-type-sv=L%C3%A5ngfilm+](https://www.svenskfilmdatabas.se/sv/film-i-produktion/?sortby=chrono_desc&film-type-sv=L%C3%A5ngfilm+) | **Docs:** [parse.bot/marketplace/1933733e-ad3d-4e2a-9bf3-ed1de81e681f/svenskfilmdatabas-se-api](https://parse.bot/marketplace/1933733e-ad3d-4e2a-9bf3-ed1de81e681f/svenskfilmdatabas-se-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-svenskfilmdatabas-se-api-1933733e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_film_details

Get detailed information about a specific film by its numeric ID. Returns title, year, production facts (director, producer, screenplay, country, company), category, and cast members with roles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `film_id` | string | Yes | Numeric film ID from list_films_in_production items[*].id (e.g. 709994). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-svenskfilmdatabas-se-api-1933733e/get_film_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"film_id":"<string>"}'
```

### list_films_in_production

List Swedish films currently in production. Returns paginated results with 15 items per page. Supports filtering by film type and production country, and sorting chronologically or alphabetically.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Filter by production country. Accepts exactly one of: Sverige, Belgien, Danmark, Finland, Frankrike, Grekland, Island, Litauen, Norge, Polen, Rumänien, Serbien, Spanien, Tyskland, Ukraina, USA. Omitted returns all countries. |
| `film_type` | string | No | Filter by film type. Accepts exactly one of: Kortfilm, Långfilm. Omitted returns all types. |
| `page` | integer | No | Page number for pagination (15 items per page). |
| `sort_by` | string | No | Sort order. Accepts exactly one of: chrono_desc, chrono_asc, alpha_asc, alpha_desc. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-svenskfilmdatabas-se-api-1933733e/list_films_in_production \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","film_type":"<string>","page":"<integer>","sort_by":"<string>"}'
```
