Skip to main content
GET
/
events
curl -X GET https://api.marsai.com/events \
  -H "Authorization: Bearer YOUR_TOKEN"
[
  {
    "id_event": 1,
    "name": "Opening Ceremony",
    "description": "The grand opening ceremony of MarsAI Film Festival 2026",
    "start_date": "2026-03-15T18:00:00Z",
    "end_date": "2026-03-15T20:00:00Z",
    "location": "Main Theater Hall",
    "event_type": "CONFERENCE",
    "createdAt": "2026-03-01T10:00:00Z",
    "updatedAt": "2026-03-01T10:00:00Z"
  },
  {
    "id_event": 2,
    "name": "Filmmaking Workshop",
    "description": "Learn advanced cinematography techniques from industry experts",
    "start_date": "2026-03-16T10:00:00Z",
    "end_date": "2026-03-16T16:00:00Z",
    "location": "Workshop Room A",
    "event_type": "WORKSHOP",
    "createdAt": "2026-03-02T14:30:00Z",
    "updatedAt": "2026-03-02T14:30:00Z"
  }
]
This endpoint requires ADMIN authentication.
Retrieves all events in the festival system.

Response

Returns an array of event objects:
id_event
integer
Unique identifier for the event
name
string
Name of the event (max 255 characters)
description
text
Detailed description of the event
start_date
date
Event start date and time
end_date
date
Event end date and time
location
string
Event location (max 255 characters)
event_type
enum
Type of event. Possible values: CONFERENCE, WORKSHOP, MEETUP, WEBINAR
createdAt
string
Timestamp when the event was created
updatedAt
string
Timestamp when the event was last updated
curl -X GET https://api.marsai.com/events \
  -H "Authorization: Bearer YOUR_TOKEN"
[
  {
    "id_event": 1,
    "name": "Opening Ceremony",
    "description": "The grand opening ceremony of MarsAI Film Festival 2026",
    "start_date": "2026-03-15T18:00:00Z",
    "end_date": "2026-03-15T20:00:00Z",
    "location": "Main Theater Hall",
    "event_type": "CONFERENCE",
    "createdAt": "2026-03-01T10:00:00Z",
    "updatedAt": "2026-03-01T10:00:00Z"
  },
  {
    "id_event": 2,
    "name": "Filmmaking Workshop",
    "description": "Learn advanced cinematography techniques from industry experts",
    "start_date": "2026-03-16T10:00:00Z",
    "end_date": "2026-03-16T16:00:00Z",
    "location": "Workshop Room A",
    "event_type": "WORKSHOP",
    "createdAt": "2026-03-02T14:30:00Z",
    "updatedAt": "2026-03-02T14:30:00Z"
  }
]