The Partner API is a REST API scoped to a single restaurant. Each API token grants access to one restaurant’s catalog (tables, rooms, shifts, discounts), its availability, and its reservations.Documentation Index
Fetch the complete documentation index at: https://docs.eat-now.io/llms.txt
Use this file to discover all available pages before exploring further.
Base URL
Authentication
All business endpoints require a Bearer token passed in theAuthorization header. Tokens are issued per restaurant and scope every request to that restaurant.
Use
GET /me to verify a token and inspect the restaurant and scopes it maps to before calling business endpoints.Response format
Successful responses return JSON with status codes200 or 201. Error responses share a common envelope:
request_id — include it when contacting support so we can trace the exact call in our systems.
Status codes
| Code | Meaning |
|---|---|
200 / 201 | Success |
400 | Malformed request (invalid JSON, wrong types) |
401 | Missing or invalid Bearer token |
403 | Token is valid but not allowed for this resource |
404 | Resource does not exist or is not visible to this token |
409 | Conflict (e.g. reservation slot no longer available) |
422 | Business-rule violation (e.g. party size exceeds shift capacity) |
Where to start
Who am I
Verify your token and inspect the restaurant it maps to.
Search availability
Find bookable slots for a party on a given date.
Create a reservation
Book a slot on behalf of a customer.
Catalog
Browse tables, rooms, shifts, and discounts.
