Public feed
Use this curated feed when you want event listings on another site without exposing the underlying backend API. It is read-only, public, and designed for lightweight scraping or consumption by a CMS.
GET /api/events/feed
Accept: application/json{
"feed": {
"name": "Visit Moree Plains public events feed",
"format": "json",
"generatedAt": "2026-06-23T00:00:00.000Z",
"count": 2,
"refreshHintMinutes": 5,
"source": "Visit Moree Plains"
},
"events": [
{
"id": "123",
"title": "Sample Event",
"teaser": "Short event summary.",
"startDate": "2026-07-01",
"endDate": "2026-07-01",
"timeText": "10:00 am",
"venueText": "Moree Town Hall",
"categories": ["markets", "family"],
"imageUrl": "https://media.example.com/sample.jpg?w=1200&h=630&fit=crop&fm=webp",
"canonicalUrl": "https://visitmoreeplains.com.au/events/123",
"lastUpdated": "2026-06-22T12:00:00.000Z"
}
]
}This feed is intended to surface events on the council website while sending users back to Visit Moree Plains for the full event page, images, and booking details.
We can add an RSS wrapper later if MPSC needs XML, but JSON is the primary contract.