Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mind-e.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint

GET /booking/public/dates

Authentication

None required (public endpoint).

Query parameters

agentId
string
required
The agent ID.
month
string
required
Month to check, format: YYYY-MM (e.g., 2026-03).
durationMinutes
number
Duration to check availability for. Helps filter dates that have enough time for the selected duration.

Response

success
boolean
month
string
The requested month.
timezone
string
Agent’s configured timezone.
dates
array

Example

curl "https://api.mind-e.co/booking/public/dates?agentId=agent-id-here&month=2026-03"

Response

{
  "success": true,
  "month": "2026-03",
  "timezone": "America/New_York",
  "dates": [
    { "date": "2026-03-02", "available": true, "slotCount": 8 },
    { "date": "2026-03-03", "available": true, "slotCount": 6 },
    { "date": "2026-03-04", "available": false },
    { "date": "2026-03-05", "available": true, "slotCount": 8 }
  ]
}