Effertz, Pagac and Price
korean · Laredo · $$ · ★ 3.4 (2425)
100 4th Avenue
- Phone
- +1 202-555-0195 ext 1
Overview
restaurants / #96
korean · Laredo · $$ · ★ 3.4 (2425)
100 4th Avenue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/96" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/96" ); const restaurant = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/restaurants.d.ts https://example-data.com/types/restaurants.d.ts
import type { Restaurant } from "./types/restaurants";
const res = await fetch(
"https://example-data.com/api/v1/restaurants/96"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/96"
)
restaurant = res.json() Response
{
"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": "+1 202-555-0195 ext 1",
"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"
}