Skip to main content
POST
/
api
/
partner
/
v1
/
availability
/
check
Check a single reservation slot
curl --request POST \
  --url https://app.eat-now.io/api/partner/v1/availability/check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "start_at": "2023-11-07T05:31:56Z",
  "party_size": 2,
  "room_id": "<string>",
  "shift_id": "<string>"
}
'
{
  "data": {
    "available": true,
    "failure_reason": 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>.

Body

application/json

Exact-slot availability validation payload. Send a JSON body, not query parameters.

start_at
string<date-time>
required

Exact slot start datetime to validate.

party_size
integer
required

Party size used to validate the slot.

Required range: x >= 1
room_id
string

Optional room to validate when the shift requires room-specific booking.

Minimum string length: 1
shift_id
string

Optional shift to validate.

Minimum string length: 1

Response

Availability status for the requested slot

data
object
required