example-data.com

restaurants / #17

Simonis, Reynolds and Harber

ethiopian · Dahliastead · $$$ · ★ 3.5 (1270)

59154 Florian Parkway

Phone
(474) 566-0519

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/17"
)
restaurant = res.json()
{
  "id": 17,
  "name": "Simonis, Reynolds and Harber",
  "slug": "simonis-reynolds-and-harber-17",
  "cuisine": "ethiopian",
  "priceRange": "$$$",
  "rating": 3.5,
  "ratingCount": 1270,
  "countryAlpha2": "CL",
  "city": "Dahliastead",
  "neighborhood": "Marion County",
  "address": "59154 Florian Parkway",
  "phone": "(474) 566-0519",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": 3.457806,
  "longitude": -96.429656,
  "createdAt": "2025-07-23T14:35:39.215Z",
  "updatedAt": "2025-07-23T14:35:39.215Z"
}
Draftbit