Skip to main content

Documentation Index

Fetch the complete documentation index at: https://apidocs.neetocal.com/llms.txt

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

The NeetoCal API is organized around REST principles and uses standard HTTP response codes. All API endpoints return JSON responses and require authentication. Before you start with NeetoCal APIs you will need the following:
  1. Workspace subdomain.
  2. API key.

Making your first API call

Let’s retrieve all bookings in your workspace using a GET request:
curl -X GET "https://{your-subdomain}.neetocal.com/api/external/v2/bookings" \
  -H 'X-Api-Key: your-api-key' \
  -H 'Content-Type: application/json'
Replace your-subdomain with your actual workspace subdomain and your-api-key with your actual API key.

Rate Limiting

API requests are subject to rate limiting to ensure fair use. If you exceed the rate limit, you’ll receive a 429 response. If you encounter this error try again after some time.

Need help?

Visit our help center or contact us by sending an email to support@neetocal.com.