Johns - Adams
indian · Bradleyburgh · $$$ · ★ 2.6 (96)
8355 Church Lane
- Phone
- (487) 620-7150
restaurants / #58
indian · Bradleyburgh · $$$ · ★ 2.6 (96)
8355 Church Lane
curl -sS \
"https://example-data.com/api/v1/restaurants/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/58"
);
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/58"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/58"
)
restaurant = res.json() {
"id": 58,
"name": "Johns - Adams",
"slug": "johns-adams-58",
"cuisine": "indian",
"priceRange": "$$$",
"rating": 2.6,
"ratingCount": 96,
"countryAlpha2": "GR",
"city": "Bradleyburgh",
"neighborhood": "North Yorkshire",
"address": "8355 Church Lane",
"phone": "(487) 620-7150",
"website": "https://johns-adams-58.example.com",
"hasDelivery": false,
"isOpen": true,
"latitude": -19.753042,
"longitude": -31.52039,
"createdAt": "2025-03-21T18:14:38.406Z",
"updatedAt": "2025-03-21T18:14:38.406Z"
}