Connelly Group
store · Nelleton
496 West Lane
- Hours
- Mon-Fri 9am-6pm, Sat 10am-4pm
- Phone
- +1 202-555-0113 ext 1
Overview
stores / #14
store · Nelleton
496 West Lane
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stores/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stores/14" ); 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/14"
);
const store = (await res.json()) as Store; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stores/14"
)
store = res.json() Response
{
"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 202-555-0113 ext 1",
"website": null,
"hours": "Mon-Fri 9am-6pm, Sat 10am-4pm",
"createdAt": "2025-09-18T17:35:16.368Z"
}