NewAgents Just Need APIs — Benchmarking three ways to give AI agents web access: read the writeup →
endpoints/reservations
Endpoint·api.agent-data.dev/v1/reservations

Restaurant Availability.

Real-time restaurant availability and reservations, cuisine and location matching, and direct booking links.

Example response

POST /v1/reservations/search
Sample
{
  "request": {
    "intent": "Italian dinner for two in the West Village around 7pm",
    "date": "2026-04-02",
    "party_size": 2,
    "platforms": [
      "resy",
      "opentable"
    ]
  },
  "recommendations": [
    {
      "name": "Via Carota",
      "platform": "resy",
      "platform_id": "r1",
      "cuisine": [
        "Italian"
      ],
      "neighborhood": "West Village",
      "price_tier": 3,
      "available_slots": [
        {
          "time": "7:15 PM",
          "table_type": "Dining Room",
          "deposit_required": false,
          "booking_url": "https://resy.com/cities/new-york-ny/venues/via-carota?date=2026-04-02&seats=2"
        }
      ],
      "why_recommended": "Closest available Italian option in the requested neighborhood and time window."
    }
  ],
  "normalization": {
    "city": "New York",
    "state": "NY",
    "neighborhood": "West Village",
    "cuisine": [
      "Italian"
    ]
  }
}

What you can build

Dinner planner

Find me a great Italian dinner for two in the West Village around 7 tonight that I can actually book.

Business dining

Find polished Chicago dinner options for four next Wednesday between 6:30 and 8 that are client-appropriate and confidently matched.

Specific venue search

Check L'Artusi for two next Friday between 7 and 9, and find similar bookable alternatives if nothing is available.

Coverage

Restaurant discovery

Discover restaurants by city and platform with filters for cuisine, neighborhood, name, keyword, and price tier, plus normalized venue metadata for easier matching.

Reservation availability

Check real-time table availability for a specific restaurant by date, party size, and dining window, with structured slot details across supported reservation platforms.

Booking handoff

Move directly from search results or available slots into booking-ready platform links and identifiers, so agents can go from finding a venue to presenting actionable reservation options.

Get started