$0.01
per call · USD Coin on Base
Restaurant recommendations from the Blackbird network (~2,000 curated restaurants, mostly NYC and San Francisco). Full-text search plus city/neighborhood filters, with complete specials on every result, refreshed daily from a cache (never a live call) — e.g. every West Village restaurant with its current Fly-reward offers in one call.
Endpoint
GET https://agentres.dev/api/discover/restaurants35
Calls / 30d
11
Unique payers / 30d
Sep 6
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://agentres.dev/api/discover/restaurants", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://agentres.dev/api/discover/restaurants?fields=slim&limit=5&neighborhood=west+village" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"charge_id": "8e9a4a1a-0000-0000-0000-000000000000",
"limit": 5,
"offset": 0,
"restaurants": [
{
"cuisine": [
"Italian"
],
"id": "07fffaa3-eaab-43c5-8cba-61407f92b8c5",
"name": "Via Carota",
"neighborhoods": [
"west village"
],
"price": 3,
"specials": [
{
"fly_reward_bips": 1000,
"label": "Earn 10x Fly when you pay with Blackbird"
}
]
}
],
"synced_at": "2026-08-08T12:00:00Z",
"total": 40
}Payment details
0x66717045858d9f598e2ebd046bf42a0b1063c0faUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of AI & Inference and the homepage with a featured placement.
More from Agentic Reservations & similar services
Agentic Reservations · Book
agentres.dev
Book a paid Resy reservation for the authenticated user using a slot config token.
Agentic Reservations · Wait Times
agentres.dev
Live restaurant wait times from camera-based crowd data. One call lists every monitored location with its slug, open status, current crowd count, and wait in minutes.
Agentic Reservations · Discover Restaurants
agentres.dev
Full detail for one Blackbird-network restaurant: locations with addresses, coordinates, time zone, and live open hours per location. Restaurant id comes from the discovery list endpoint.