Search Events
Testing
GET
/calendars/{calendarId}/events/search
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.aladia.io/v2/calendars//events/search?name&startDate&endDate&cycleId&limit=50' \
--header 'apikey: '
Response Response Example
200 - Success
{
"data": [
{
"id": "66f536b8b9d5fe5295e3281c",
"calendarId": "66f5352830bb1fffc4c2cb7c",
"name": "morning test",
"dates": {
"startDate": "2024-10-09T05:45:00.000Z",
"endDate": "2024-10-09T06:00:00.000Z"
},
"membersCount": 1,
"ownerProfilePicture": null
},
{
"id": "66f536b9b9d5fe5295e3281f",
"calendarId": "66f5352830bb1fffc4c2cb7c",
"name": "morning test",
"dates": {
"startDate": "2024-10-10T05:45:00.000Z",
"endDate": "2024-10-10T06:00:00.000Z"
},
"membersCount": 1,
"ownerProfilePicture": null
},
{
"id": "66f536b9b9d5fe5295e32822",
"calendarId": "66f5352830bb1fffc4c2cb7c",
"name": "morning test",
"dates": {
"startDate": "2024-10-11T05:45:00.000Z",
"endDate": "2024-10-11T06:00:00.000Z"
},
"membersCount": 1,
"ownerProfilePicture": null
},
{
"id": "66f536b9b9d5fe5295e32825",
"calendarId": "66f5352830bb1fffc4c2cb7c",
"name": "morning test",
"dates": {
"startDate": "2024-10-12T05:45:00.000Z",
"endDate": "2024-10-12T06:00:00.000Z"
},
"membersCount": 1,
"ownerProfilePicture": null
}
],
"cursor": {
"next": null,
"prev": null,
"totalItems": 4
}
}
Request
Path Params
calendarId
stringÂ
required
Query Params
name
stringÂ
optional
startDate
string  | nullÂ
optional
endDate
string  | nullÂ
optional
cycleId
stringÂ
optional
limit
integerÂ
optional
Default:
50
Header Params
apikey
stringÂ
optional
Example:
{{apikey}}
Responses
Modified at 2025-03-28 12:34:17