Stroman - Wolf
thai · Hoboken · $$ · ★ 3.7 (165)
463 Bahringer Underpass
- Phone
- (270) 810-7782
restaurants / #39
thai · Hoboken · $$ · ★ 3.7 (165)
463 Bahringer Underpass
curl -sS \
"https://example-data.com/api/v1/restaurants/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurants/39"
);
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/39"
);
const restaurant = (await res.json()) as Restaurant;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/39"
)
restaurant = res.json() {
"id": 39,
"name": "Stroman - Wolf",
"slug": "stroman-wolf-39",
"cuisine": "thai",
"priceRange": "$$",
"rating": 3.7,
"ratingCount": 165,
"countryAlpha2": "TH",
"city": "Hoboken",
"neighborhood": "Shropshire",
"address": "463 Bahringer Underpass",
"phone": "(270) 810-7782",
"website": null,
"hasDelivery": false,
"isOpen": true,
"latitude": 56.713901,
"longitude": -179.728554,
"createdAt": "2025-08-23T12:42:00.216Z",
"updatedAt": "2025-08-23T12:42:00.216Z"
}