Book a paid Resy reservation for the authenticated user using a slot config token
Book a paid Resy reservation for the authenticated user using a slot config token.
10000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-14
updated
Provider
agentic-reservations.vercel.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x66717045858d9f598e2ebd046bf42a0b1063c0fa",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 3600
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "FCFgb8Z63uwim2QpDJW4TGwLqZoENjckwGosLmg26zBS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"config_id": "eyJ2ZXJzaW9uIjoiMS4yIi...",
"day": "2026-05-01",
"party_size": 2,
"venue_id": "6194"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"kind": "booked",
"reservation_id": 987654,
"resy_token": "abc123token",
"success": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"config_id": {
"description": "Slot config token from /api/availability",
"type": "string"
},
"day": {
"description": "Date in YYYY-MM-DD format",
"format": "date",
"type": "string"
},
"party_size": {
"description": "Number of guests",
"minimum": 1,
"type": "integer"
},
"venue_id": {
"description": "Resy venue ID",
"type": "string"
}
},
"required": [
"venue_id",
"config_id",
"party_size",
"day"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"kind": {
"type": "string"
},
"reservation_id": {
"type": "integer"
},
"resy_token": {
"type": "string"
},
"success": {
"type": "boolean"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agentic-reservations.vercel.app/api/book" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agentic-reservations.vercel.app/api/book");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agentic-reservations.vercel.app/api/book")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6373.json, and this resource appears in /discovery/resources and /discovery/search.