Get started with the NeetoCal API in minutes. Make your first API call and retrieve your bookings. You should have your API key & subdomain ready with you.
curl -X GET "https://{your-workspace}.neetocal.com/api/external/v1/bookings" \ -H "X-Api-Key: your-api-key" \ -H "Content-Type: application/json"
your-workspace
your-api-key
{ "bookings": [ { "id": "booking-123", "sid": "abc123", "name": "John Doe", "email": "john@example.com", "host_name": "Jane Smith", "host_email": "jane@example.com", "starts_at": "2024-01-15T10:30:00Z", "ends_at": "2024-01-15T11:00:00Z", "time_zone": "America/New_York", "status": "confirmed", "created_at": "2024-01-10T15:30:00Z", "updated_at": "2024-01-10T15:30:00Z" } ], "pagination": { "total_records": 1, "total_pages": 1, "current_page_number": 1, "page_size": 30 } }