Hand Inc
indian · Costa Mesa · $$ · ★ 3.2 (2369)
94143 S Railroad Street
- Phone
- +1 202-555-0122 ext 1
- Website
- https://hand-inc-23.example.com
Overview
restaurants / #23
indian · Costa Mesa · $$ · ★ 3.2 (2369)
94143 S Railroad Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/23" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/23" ); 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/23"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/23"
)
restaurant = res.json() Response
{
"id": 23,
"name": "Hand Inc",
"slug": "hand-inc-23",
"cuisine": "indian",
"priceRange": "$$",
"rating": 3.2,
"ratingCount": 2369,
"countryAlpha2": "DK",
"city": "Costa Mesa",
"neighborhood": "Fife",
"address": "94143 S Railroad Street",
"phone": "+1 202-555-0122 ext 1",
"website": "https://hand-inc-23.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": 30.240695,
"longitude": -50.433774,
"createdAt": "2025-03-08T04:56:35.024Z",
"updatedAt": "2025-03-08T04:56:35.024Z"
}