Skip to Content
Welcome to Festie! 🎪 The ultimate festival management platform is here!

GET /news

Lists published public news for the resolved festival.

GET /public-api/v1/news

Query Parameters

NameTypeRequiredNotes
pageintegerNoDefaults to 1.
limitintegerNoDefaults to 20, maximum 500.
sortBystringNoNews sort field.
sortOrderasc or descNoSort direction.
searchstringNoText search.
statusNewsStatus[]NoPublic output is still restricted to published news.
isPublicboolean arrayNoPublic output is still restricted to public news.
tagsstring arrayNoFilter by tags.
hasThumbnailboolean arrayNoFilter by thumbnail presence.
hasFeatureImageboolean arrayNoFilter by feature image presence.

Public filtering always restricts records to published, public, not deleted, and publishedAt not in the future.

Example

curl \
  -H "X-API-Key: fst_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
  "https://testapi.festie.app/public-api/v1/news?page=1&limit=10&tags=results"

Response Data

Each item includes:

FieldNotes
idNews id.
titlePublic title.
summaryPublic summary.
contentHtmlRenderable public content.
tagsPublic tags.
publishedAtPublication time.
thumbnailUrlOptional thumbnail URL.
featureImageUrlOptional feature image URL.
createdAt, updatedAtTimestamps.
Last updated on