example-data.com

restaurants / #57

Ferry LLC

thai · South Gilbertoton · $ · ★ 3.8 (763)

182 Greenway

Phone
(596) 222-1601

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/57" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/57"
);
const restaurant = await res.json();
import type { Restaurant } from "https://example-data.com/types/restaurants.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/restaurants/57"
);
const restaurant = (await res.json()) as Restaurant;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/57"
)
restaurant = res.json()
{
  "id": 57,
  "name": "Ferry LLC",
  "slug": "ferry-llc-57",
  "cuisine": "thai",
  "priceRange": "$",
  "rating": 3.8,
  "ratingCount": 763,
  "countryAlpha2": "AT",
  "city": "South Gilbertoton",
  "neighborhood": "Essex",
  "address": "182 Greenway",
  "phone": "(596) 222-1601",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": -39.830729,
  "longitude": -176.372226,
  "createdAt": "2025-01-08T22:20:23.861Z",
  "updatedAt": "2025-01-08T22:20:23.861Z"
}
Draftbit