Agentic Reservations — List Restaurant Reservations is a free API for AI agents from agentres.dev, callable via x402, Free, status unknown (last checked 2026-09-14, last successful call 2026-07-28).
Retrieves a paginated list of upcoming or past restaurant reservations for the authenticated agent via Resy.
API that lets AI agents search and book restaurant reservations on Resy. Pay $0.01 USDC per booking with a crypto wallet.
A JSON object containing a paginated list of reservations (upcoming or past), each with venue name, cuisine, address, neighborhood, star rating, date, time slot, party size, config type, reservation ID, and a resy_token usable for cancellation. Also includes total count, limit, and offset for pagination.
GEThttps://agentres.dev/api/reservationsUse this endpoint when you need to list or review existing restaurant reservations for a user — whether upcoming or historical — especially when you need the resy_token to perform a subsequent cancellation. Prefer this over a search/availability endpoint when the goal is to inspect already-booked reservations rather than find new ones.
| Field | Type | Description |
|---|---|---|
| inputrequired | object | |
| output | object |
{
"type": "json",
"example": {
"type": "upcoming",
"limit": 10,
"total": 1,
"offset": 0,
"reservations": [
{
"day": "2026-05-01",
"venue": {
"id": 6194,
"name": "Carbone",
"rating": 4.7,
"cuisine": "Italian",
"address_1": "181 Thompson St",
"neighborhood": "Greenwich Village"
},
"num_seats": 2,
"time_slot": "19:00:00",
"resy_token": "abc123token",
"config_type": "Dining Room",
"reservation_id": 987654
}
]
}
}Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"