Restaurant recommendations from the Blackbird network (~2,000 curated restaurants, mostly
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.
10000 (raw units)
price
18
calls / 30d
12
unique payers
2026-09-17
updated
Provider
agentres.dev · 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": {
"method": "GET",
"queryParams": {
"fields": "slim",
"limit": 5,
"neighborhood": "west village"
},
"type": "http"
},
"output": {
"example": {
"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
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"city": {
"description": "Case-insensitive city filter, e.g. 'new york'",
"type": "string"
},
"fields": {
"description": "slim returns id/name/specials/specials_checked_at only (default limit 50, max 200) for a cheap wide sweep. full (default) returns locations, cuisine, price, and complete specials (default limit 20, max 100).",
"enum": [
"full",
"slim"
],
"type": "string"
},
"include_specials": {
"description": "Deprecated: accepted and ignored. Specials are always present now — use fields instead.",
"type": "boolean"
},
"limit": {
"maximum": 200,
"minimum": 1,
"type": "integer"
},
"neighborhood": {
"description": "Case-insensitive neighborhood filter, e.g. 'west village'",
"type": "string"
},
"offset": {
"minimum": 0,
"type": "integer"
},
"query": {
"description": "Full-text search over name, cuisine, city, neighborhood",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"charge_id": {
"format": "uuid",
"type": "string"
},
"limit": {
"type": "integer"
},
"offset": {
"type": "integer"
},
"restaurants": {
"items": {
"additionalProperties": true,
"description": "id, name, cuisine[], price tier (1-4), image_url, website_url, cities[], neighborhoods[], locations[] (address, coordinates, time_zone), specials ([] = checked, no offers; null = never checked), specials_checked_at",
"type": "object"
},
"type": "array"
},
"synced_at": {
"format": "date-time",
"nullable": true,
"type": "string"
},
"total": {
"type": "integer"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agentres.dev/api/discover/restaurants" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agentres.dev/api/discover/restaurants");
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://agentres.dev/api/discover/restaurants")
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/750.json, and this resource appears in /discovery/resources and /discovery/search.