Skip to main content

GET /api/events/

Returns the full details of a single event. This endpoint is publicly accessible and does not require authentication.

Path parameters

id
string
required
The GUID of the event to retrieve.

Response fields

status
boolean
required
Indicates whether the request succeeded.
message
string
Human-readable result message.
data
object
required
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": []
  }
}

Build docs developers (and LLMs) love