Hagenes Inc
store · West Nannie
6139 Dare Well
- Hours
- 24/7
- Phone
- 1-587-780-4871
- Website
- https://www.hagenes-inc.com
stores / #21
store · West Nannie
6139 Dare Well
curl -sS \
"https://example-data.com/api/v1/stores/21" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stores/21"
);
const store = await res.json();import type { Store } from "https://example-data.com/types/stores.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/stores/21"
);
const store = (await res.json()) as Store;import requests
res = requests.get(
"https://example-data.com/api/v1/stores/21"
)
store = res.json() {
"id": 21,
"name": "Hagenes Inc",
"slug": "hagenes-inc-21",
"description": "Progressive sustainable toolset",
"address": "6139 Dare Well",
"city": "West Nannie",
"region": "Pennsylvania",
"countryAlpha2": "TR",
"postalCode": "50480",
"phone": "1-587-780-4871",
"website": "https://www.hagenes-inc.com",
"hours": "24/7",
"createdAt": "2025-10-30T17:47:55.408Z"
}