Skip to main content
GET
/
api
/
partner
/
v1
/
discounts
Get all discounts
curl --request GET \
  --url https://app.eat-now.io/api/partner/v1/discounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "discount_1",
      "is_active": true,
      "value": 10,
      "message": "VIP",
      "start_date": "2026-04-01T00:00:00.000Z",
      "end_date": null,
      "start_time": "18:00",
      "end_time": "23:00",
      "days_of_week": [
        1,
        2,
        3,
        4,
        5
      ],
      "max_covers_per_day": 20
    }
  ]
}

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>.

Response

All restaurant discounts, active first then newest

data
object[]
required