Ortiz, Torp and Howell
mediterranean · Fort Devanside · $ · ★ 2.9 (744)
797 Rosemary Hollow
- Phone
- +1 202-555-0106 ext 1
Overview
restaurants / #7
mediterranean · Fort Devanside · $ · ★ 2.9 (744)
797 Rosemary Hollow
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/7" ); 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/7"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/7"
)
restaurant = res.json() Response
{
"id": 7,
"name": "Ortiz, Torp and Howell",
"slug": "ortiz-torp-and-howell-7",
"cuisine": "mediterranean",
"priceRange": "$",
"rating": 2.9,
"ratingCount": 744,
"countryAlpha2": "IN",
"city": "Fort Devanside",
"neighborhood": "Logan County",
"address": "797 Rosemary Hollow",
"phone": "+1 202-555-0106 ext 1",
"website": "https://ortiz-torp-and-howell-7.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": 37.485158,
"longitude": 119.14739,
"createdAt": "2025-08-03T20:39:08.075Z",
"updatedAt": "2025-08-03T20:39:08.075Z"
}