GET /api/events/
Returns the full details of a single event. This endpoint is publicly accessible and does not require authentication.
Path parameters
The GUID of the event to retrieve.
Response fields
Indicates whether the request succeeded.
Human-readable result message.
Unique identifier (GUID) for the event.
GUID of the associated category.
Display name of the associated category.
ID of the user who organized the event.
Full name of the organizer.
Average rating of the organizer.
Total number of ratings the organizer has received.
Full description of the event.
Physical location or address of the event.
Date and time of the event (ISO 8601).
Date and time the event was published (ISO 8601).
Total number of attendees.
Total number of comments.
List of attendance records for the event.
List of comments on the event.
curl --request GET \
--url 'https://api.meetpoint.com/api/events/a1b2c3d4-e5f6-7890-abcd-ef1234567890'
{
"status": true,
"message": "Evento obtenido correctamente",
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"categoryId": "c1d2e3f4-0000-1111-2222-333344445555",
"categoryName": "Music",
"organizerId": "user-abc123",
"organizerName": "Jane Doe",
"organizerRating": 4.7,
"organizerRatingsCount": 15,
"title": "Summer Music Festival",
"description": "An outdoor music festival featuring local artists.",
"ubication": "Central Park, New York",
"date": "2026-07-20T18:00:00Z",
"publicationDate": "2026-03-01T10:00:00Z",
"attendancesCount": 120,
"commentsCount": 34,
"attendances": [],
"comments": []
}
}