Skip to main content
GET
/
api
/
partner
/
v1
/
availability
Search bookable reservation slots
curl --request GET \
  --url https://app.eat-now.io/api/partner/v1/availability \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "slots": [
      {
        "start_at": "2026-04-08T19:15:00+01:00",
        "shift_id": "shift_dinner",
        "room_id": null
      }
    ]
  }
}

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.

Authorizations

Authorization
string
header
default:your_token_here
required

Restaurant-scoped partner API token passed as Authorization: Bearer <token>.

Query Parameters

start_at_from
string<date-time>
required

Lower inclusive datetime bound for the search window.

start_at_to
string<date-time>
required

Upper inclusive datetime bound for the search window.

party_size
integer
required

Party size used to filter bookable slots.

Required range: x >= 1
room_id
string

Optional room filter. Only slots for this room are returned.

Minimum string length: 1
shift_id
string

Optional shift filter. Only slots for this shift are returned.

Minimum string length: 1

Response

Bookable slots only. Unavailable slots and remaining capacity counts are not returned.

data
object
required