Skip to main content
POST
/
v1
/
events
/
eventDates
Get Event Date and Time
curl --request POST \
  --url http://localhost:4000/v1/events/eventDates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "linkPrefix": "<string>",
  "timeZone": "<string>",
  "currentDate": "<string>"
}
'
{
  "data": {
    "isPreview": false,
    "availabilities": {
      "2026-02-26": [
        "09:00",
        "09:15",
        "10:00"
      ],
      "2026-02-27": [
        "09:00",
        "14:00"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

API key required in Authorization header. Format: iclosed-<token>

Body

application/json
Minimum string length: 1
timeZone
string
currentDate
string

Response

Available event dates and times by date

data
object
required