Effertz, Pagac and Price
korean · Laredo · $$ · ★ 3.4 (2425)
100 4th Avenue
- Phone
- (527) 868-3514
restaurants / #96
korean · Laredo · $$ · ★ 3.4 (2425)
100 4th Avenue
curl -sS \
"https://example-data.com/api/v1/restaurants/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/96"
);
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/96"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/96"
)
restaurant = res.json() {
"id": 96,
"name": "Effertz, Pagac and Price",
"slug": "effertz-pagac-and-price-96",
"cuisine": "korean",
"priceRange": "$$",
"rating": 3.4,
"ratingCount": 2425,
"countryAlpha2": "AR",
"city": "Laredo",
"neighborhood": "Hamilton County",
"address": "100 4th Avenue",
"phone": "(527) 868-3514",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": 51.732965,
"longitude": 101.990484,
"createdAt": "2026-03-07T02:05:13.745Z",
"updatedAt": "2026-03-07T02:05:13.745Z"
}