Durgan Group
french · Fort Collins · $$$ · ★ 3.1 (2352)
53526 Amalia Gateway
- Phone
- +1 202-555-0104 ext 1
Overview
restaurants / #5
french · Fort Collins · $$$ · ★ 3.1 (2352)
53526 Amalia Gateway
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurants/5" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurants/5" ); 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/5"
);
const restaurant = (await res.json()) as Restaurant; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurants/5"
)
restaurant = res.json() Response
{
"id": 5,
"name": "Durgan Group",
"slug": "durgan-group-5",
"cuisine": "french",
"priceRange": "$$$",
"rating": 3.1,
"ratingCount": 2352,
"countryAlpha2": "DE",
"city": "Fort Collins",
"neighborhood": "Isle of Wight",
"address": "53526 Amalia Gateway",
"phone": "+1 202-555-0104 ext 1",
"website": "https://durgan-group-5.example.com",
"hasDelivery": true,
"isOpen": true,
"latitude": 16.394441,
"longitude": 63.98066,
"createdAt": "2025-10-13T03:52:21.315Z",
"updatedAt": "2025-10-13T03:52:21.315Z"
}