Pouros, O'Reilly and Block
korean · Lake Chandler · $ · ★ 3.5 (1385)
20728 E Water Street
- Phone
- (428) 422-1326
restaurants / #47
korean · Lake Chandler · $ · ★ 3.5 (1385)
20728 E Water Street
curl -sS \
"https://example-data.com/api/v1/restaurants/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/47"
);
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/47"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/47"
)
restaurant = res.json() {
"id": 47,
"name": "Pouros, O'Reilly and Block",
"slug": "pouros-o-reilly-and-block-47",
"cuisine": "korean",
"priceRange": "$",
"rating": 3.5,
"ratingCount": 1385,
"countryAlpha2": "IL",
"city": "Lake Chandler",
"neighborhood": "Clay County",
"address": "20728 E Water Street",
"phone": "(428) 422-1326",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -3.424324,
"longitude": -95.344106,
"createdAt": "2025-11-27T14:08:01.423Z",
"updatedAt": "2025-11-27T14:08:01.423Z"
}