example-data.com

restaurants / #98

Aufderhar - Johns

indian · East Lorenside · $$$$ · ★ 4.5 (404)

15989 O'Conner Bridge

Phone
(903) 509-1203

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/98"
)
restaurant = res.json()
{
  "id": 98,
  "name": "Aufderhar - Johns",
  "slug": "aufderhar-johns-98",
  "cuisine": "indian",
  "priceRange": "$$$$",
  "rating": 4.5,
  "ratingCount": 404,
  "countryAlpha2": "PL",
  "city": "East Lorenside",
  "neighborhood": "Staffordshire",
  "address": "15989 O'Conner Bridge",
  "phone": "(903) 509-1203",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": -42.551374,
  "longitude": -63.166326,
  "createdAt": "2025-04-02T03:04:30.195Z",
  "updatedAt": "2025-04-02T03:04:30.195Z"
}
Draftbit