Quick Start Guide
Get started with the OneTablet POS/KDS API in a few simple steps.
Prerequisites
- API key from OneTablet technical support
- Basic knowledge of HTTP requests
Step 1: Get Your API Key
Contact OneTablet technical support to obtain your API key.
Step 2: Make Your First Request
Test your API key by making a simple request to get orders:
curl -X GET "https://public-api.onetablet.co/api/v1/orders" \
-H "x-api-key: your-api-key"
Step 3: Get a Specific Order
Retrieve a specific order by its ID:
curl -X GET "https://public-api.onetablet.co/api/v1/orders/550e8400-e29b-41d4-a716-446655440000" \
-H "x-api-key: your-api-key"
Step 4: Filter Orders
Get orders with specific filters:
curl -X GET "https://public-api.onetablet.co/api/v1/orders?statuses=new&limit=10" \
-H "x-api-key: your-api-key"
Next Steps
- Read the Orders API documentation for detailed endpoint information
- Check the Webhooks API documentation for real-time notifications
- Review Authentication for security details