Feeney, Predovic and Howe
store · South Eveport
1272 Mitchell Springs
- Hours
- Mon-Sat 8am-8pm, Sun 10am-6pm
- Phone
- (372) 513-6732 x8601
stores / #3
store · South Eveport
1272 Mitchell Springs
curl -sS \
"https://example-data.com/api/v1/stores/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stores/3"
);
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/3"
);
const store = (await res.json()) as Store;import requests
res = requests.get(
"https://example-data.com/api/v1/stores/3"
)
store = res.json() {
"id": 3,
"name": "Feeney, Predovic and Howe",
"slug": "feeney-predovic-and-howe-3",
"description": "Face to face secondary parallelism",
"address": "1272 Mitchell Springs",
"city": "South Eveport",
"region": "Louisiana",
"countryAlpha2": "NO",
"postalCode": "91433",
"phone": "(372) 513-6732 x8601",
"website": "https://www.feeney-predovic-and-howe.com",
"hours": "Mon-Sat 8am-8pm, Sun 10am-6pm",
"createdAt": "2023-11-25T23:03:36.463Z"
}