example-data.com

restaurants / #65

Goldner - Labadie

thai · Kylechester · $$ · ★ 3.3 (2121)

67949 Bertha Pine

Phone
(763) 913-5041

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/65" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/65"
);
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/65"
);
const restaurant = (await res.json()) as Restaurant;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/65"
)
restaurant = res.json()
{
  "id": 65,
  "name": "Goldner - Labadie",
  "slug": "goldner-labadie-65",
  "cuisine": "thai",
  "priceRange": "$$",
  "rating": 3.3,
  "ratingCount": 2121,
  "countryAlpha2": "IS",
  "city": "Kylechester",
  "neighborhood": "Montgomery County",
  "address": "67949 Bertha Pine",
  "phone": "(763) 913-5041",
  "website": null,
  "hasDelivery": false,
  "isOpen": true,
  "latitude": -43.261372,
  "longitude": -163.876062,
  "createdAt": "2024-05-31T16:46:31.107Z",
  "updatedAt": "2024-05-31T16:46:31.107Z"
}
Draftbit