GET /api/events
Returns a paginated list of all events. This endpoint is publicly accessible and does not require authentication.
Results are paginated with a page size of 8 items. Use the page parameter to navigate between pages.
Query parameters
Filter events by title or description. Returns all events when omitted.
Page number to retrieve. Starts at 1.
Response fields
Indicates whether the request succeeded.
Human-readable result message.
Whether a next page of results exists.
Whether a previous page of results exists.
Number of items per page (8).
Total number of events matching the query.
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.
curl --request GET \
--url 'https://api.meetpoint.com/api/events?searchTerm=music&page=1'
{
"status": true,
"message": "Eventos obtenidos correctamente",
"data": {
"hasNextPage": true,
"hasPreviousPage": false,
"currentPage": 1,
"pageSize": 8,
"totalItems": 24,
"totalPages": 3,
"items": [
{
"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": []
}
]
}
}