mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

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.

Do you run api.aidress.ai? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-14
updated

Provider

api.aidress.ai · 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://api.aidress.ai/pay/agent_agentres_dev"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.aidress.ai/pay/agent_agentres_dev");
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://api.aidress.ai/pay/agent_agentres_dev")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/583.json, and this resource appears in /discovery/resources and /discovery/search.