Connelly Group
store · Nelleton
496 West Lane
- Hours
- Mon-Fri 9am-6pm, Sat 10am-4pm
- Phone
- 1-819-474-1038 x1205
stores / #14
store · Nelleton
496 West Lane
curl -sS \
"https://example-data.com/api/v1/stores/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/stores/14"
);
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/14"
);
const store = (await res.json()) as Store;import requests
res = requests.get(
"https://example-data.com/api/v1/stores/14"
)
store = res.json() {
"id": 14,
"name": "Connelly Group",
"slug": "connelly-group-14",
"description": "Reduced mobile core",
"address": "496 West Lane",
"city": "Nelleton",
"region": "Mississippi",
"countryAlpha2": "NL",
"postalCode": "27683-4454",
"phone": "1-819-474-1038 x1205",
"website": null,
"hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
"createdAt": "2025-09-18T17:35:16.368Z"
}