GET /downloads
Lists public downloadable files for the resolved festival.
GET /public-api/v1/downloadsQuery Parameters
| Name | Type | Required | Notes |
|---|---|---|---|
page | integer | No | Defaults to 1. |
limit | integer | No | Defaults to 20, maximum 500. |
sortBy | string | No | Download sort field. |
sortOrder | asc or desc | No | Sort direction. |
search | string | No | Searches public download text fields. |
category | string | No | Filters by download category. |
isPublic | boolean | No | Public output is restricted to public downloads. |
Example
curl \
-H "X-API-Key: fst_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
"https://testapi.festie.app/public-api/v1/downloads?category=forms"
Response Data
Each item includes:
| Field | Notes |
|---|---|
id | Download id. |
title | Public title. |
description | Public description. |
category | Public category label. |
fileUrl | Public file URL. |
createdAt, updatedAt | Timestamps. |
Last updated on