Arrowfilms APIarrowfilms.com ↗
Browse Arrow Films' complete catalog of physical movie releases and check real-time availability, formats, editions, and product details for Blu-ray and 4K UHD titles from the UK store. Get up-to-date release dates and specifications to track upcoming drops or find specific versions of your favorite films.
curl -X GET 'https://api.parse.bot/scraper/a0adebde-eae9-43c8-9cd3-4807244d44a1/list_releases?page=1&limit=5&format=4k' \ -H 'X-API-Key: $PARSE_API_KEY'
Lists Arrow Video physical movie releases (Blu-ray and 4K UHD) with pagination. Returns current releases, pre-orders/upcoming, and historical releases. Each record represents one distinct physical edition. Paginated at up to 30 items per page via offset; use page and limit to tile through the full catalog. The total field reports the upstream count for the current format filter.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (1-indexed). Each page returns up to `limit` results. |
| limit | integer | Number of results per page, between 1 and 30. |
| format | string | Filter releases by physical format. Omitting returns all formats (Blu-ray and 4K UHD combined). |
{
"type": "object",
"fields": {
"page": "integer current page number",
"limit": "integer items per page",
"total": "integer total number of releases matching the current filter",
"has_more": "boolean indicating whether more pages exist",
"releases": "array of release objects, each containing movie_title, product_title, release_date, format, edition, region, availability, product_url, product_id, cover_image_url"
},
"sample": {
"data": {
"page": 1,
"limit": 5,
"total": 788,
"has_more": true,
"releases": [
{
"format": "4K UHD",
"region": "Free",
"edition": "Limited Edition",
"product_id": "17977994",
"movie_title": "The Last Boy Scout",
"product_url": "https://www.arrowfilms.com/p/the-last-boy-scout-limited-edition-4k-uhd/17977994/",
"availability": "Pre-order",
"release_date": "2026-10-12",
"product_title": "The Last Boy Scout Limited Edition 4K UHD",
"cover_image_url": "https://static.thcdn.com/images/v2/productimg/original/17977994-8295354173958226.jpg?width=300&height=300"
},
{
"format": "4K UHD",
"region": "B, Free",
"edition": "Limited Edition",
"product_id": "17977978",
"movie_title": "The Frighteners",
"product_url": "https://www.arrowfilms.com/p/the-frighteners-limited-edition-4k-uhd/17977978/",
"availability": "Pre-order",
"release_date": "2026-10-26",
"product_title": "The Frighteners Limited Edition 4K UHD",
"cover_image_url": "https://static.thcdn.com/images/v2/productimg/original/17977978-2705356186619532.jpg?width=300&height=300"
}
]
},
"status": "success"
}
}About the Arrowfilms API
The Arrowfilms API on Parse exposes 1 endpoint for the publicly available data on arrowfilms.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.