GetEventsByMonth
Endpoint
GET /api/events/by-month
get request params
month:6 - required
year:2026 - nullable (if not set - using current year)
Request Headers
{
"Accept": "application/json",
"Content-Type": "application/json",
for now bearer token not used
"Bearer Token": "31|T6ZNvHMTYStdJpCEnID9U9xWEsMW2XpaU4gapb6zcf014449"
}
Request Body
{
}
Response Body (200)
[
{
"id": 27,
"name": "Lady Gaga Concert Metlife stadium",
"slug": "lady-gaga-concert-metlife-stadium",
"short_description": "Ultimate Tour 2026",
"description": "<p>Concert under the stars</p>",
"picture_url": "http://0.0.0.0:8035/storage/events/01KB3GKZS6EFXKCNH19JKP7K11.png",
"event_start_date": "2026-06-27T20:00:00.000000Z",
"event_end_date": "2026-06-27T22:30:00.000000Z",
"location": "Metlife tadium"
},
{
"id": 29,
"name": "Ferrari Experience",
"slug": "ferrari-experience",
"short_description": "italy race",
"description": "<p>Test 456 </p>",
"picture_url": "http://0.0.0.0:8035/storage/events/01KB55YHHBKFGS7DMK03AB94AP.png",
"event_start_date": "2025-11-30T00:00:00.000000Z",
"event_end_date": "2026-06-09T00:00:00.000000Z",
"location": "Milan - Monaco - London"
}
]
Response Body (401)
{
"message": "Unauthenticated."
}
Response Body (422)
{
"message": "The month field is required.",
"errors": {
"month": [
"The month field is required."
]
}
}
18 February 2026