Skip to main content
GET
/
restaurants
/
{id}
Retrieve a restaurant
curl --request GET \
  --url https://api.staging.blackbird.xyz/flynet/v1/restaurants/{id}
Returns one restaurant by UUID. Auth: API key in X-API-Key.

Example

curl https://api.staging.blackbird.xyz/flynet/v1/restaurants/{uuid} \
  -H "X-API-Key: $API_KEY"

Restaurant asset

asset is nullable. When present, it contains nullable URL strings:
{
  "asset": {
    "preview_1x": "https://...",
    "web_2x": "https://...",
    "full_3x": "https://..."
  }
}