example-data.com
Menu
Browse docs and collections

Overview

stores / #4

Beatty, Predovic and Emmerich

store · Cutler Bay

4286 Schuster Radial

Hours
Daily 10am-9pm
Phone
+1 202-555-0103 ext 1

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/stores/4" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/stores/4"
);
const store = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/stores.d.ts https://example-data.com/types/stores.d.ts
import type { Store } from "./types/stores";

const res = await fetch(
  "https://example-data.com/api/v1/stores/4"
);
const store = (await res.json()) as Store;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/stores/4"
)
store = res.json()

Response

{
  "id": 4,
  "name": "Beatty, Predovic and Emmerich",
  "slug": "beatty-predovic-and-emmerich-4",
  "description": "Profit-focused logistical structure",
  "address": "4286 Schuster Radial",
  "city": "Cutler Bay",
  "region": "Massachusetts",
  "countryAlpha2": "ES",
  "postalCode": "67255",
  "phone": "+1 202-555-0103 ext 1",
  "website": null,
  "hours": "Daily 10am-9pm",
  "createdAt": "2024-10-05T08:09:39.842Z"
}