Walsh LLC
thai · Predovicville · $$$$ · ★ 4.8 (2126)
4324 Mary Street
- Phone
- (341) 455-1073
restaurants / #100
thai · Predovicville · $$$$ · ★ 4.8 (2126)
4324 Mary Street
curl -sS \
"https://example-data.com/api/v1/restaurants/100" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/100"
);
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/100"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/100"
)
restaurant = res.json() {
"id": 100,
"name": "Walsh LLC",
"slug": "walsh-llc-100",
"cuisine": "thai",
"priceRange": "$$$$",
"rating": 4.8,
"ratingCount": 2126,
"countryAlpha2": "EG",
"city": "Predovicville",
"neighborhood": "Crawford County",
"address": "4324 Mary Street",
"phone": "(341) 455-1073",
"website": null,
"hasDelivery": true,
"isOpen": true,
"latitude": -48.566871,
"longitude": -5.978467,
"createdAt": "2025-11-11T15:57:07.027Z",
"updatedAt": "2025-11-11T15:57:07.027Z"
}