example-data.com

restaurants / #36

Mayert LLC

mediterranean · Darianaburgh · $$ · ★ 4.4 (230)

34690 Jean Road

Phone
(558) 485-7021

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/36"
)
restaurant = res.json()
{
  "id": 36,
  "name": "Mayert LLC",
  "slug": "mayert-llc-36",
  "cuisine": "mediterranean",
  "priceRange": "$$",
  "rating": 4.4,
  "ratingCount": 230,
  "countryAlpha2": "FI",
  "city": "Darianaburgh",
  "neighborhood": "Derbyshire",
  "address": "34690 Jean Road",
  "phone": "(558) 485-7021",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": -37.331026,
  "longitude": -36.834183,
  "createdAt": "2024-05-30T07:39:36.839Z",
  "updatedAt": "2024-05-30T07:39:36.839Z"
}
Draftbit