Skip to main content

Admin API

The Admin API provides complete access to manage your Tiquo platform programmatically. This API is designed for server-side use only and should never be exposed in client-side code.
Security Notice: The Admin API uses your secret API key which grants full access to your account. Only use this API in secure server-side environments. Never expose your Admin API key in frontend code, mobile apps, or public repositories.

Use Cases

  • Backend integrations - Sync data with your existing systems (CRM, ERP, accounting)
  • Automated workflows - Create bookings, update customers, or manage inventory programmatically
  • Custom dashboards - Build internal tools with full access to your Tiquo data
  • Bulk operations - Import/export large datasets or perform batch updates

Authentication

All Admin API requests require your secret API key in the Authorization header:
curl -X GET "https://api.tiquo.co/admin/v1/customers" \
  -H "Authorization: Bearer sk_live_your_secret_key"

Base URL

https://api.tiquo.co/admin/v1

Rate Limits

The Admin API allows up to 1,000 requests per minute per API key. If you exceed this limit, you’ll receive a 429 Too Many Requests response.

Available Resources