showings #248
- listingId
- Condo in Fort Valeriecester · Fort Valeriecester
- prospectUserId
-
Adan Weber @adan.weber61
- scheduledAt
- status
- no_show
- notes
- Curtus venia strues corrumpo.
- createdAt
Overview
showings / #248
#248
#248
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/248" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/248" ); const showing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/showings.d.ts https://example-data.com/types/showings.d.ts
import type { Showing } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings/248"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/248"
)
showing = res.json() Response
{
"id": 248,
"listingId": 94,
"prospectUserId": 155,
"scheduledAt": "2025-04-07T04:26:25.060Z",
"status": "no_show",
"notes": "Curtus venia strues corrumpo.",
"createdAt": "2025-03-16T17:42:34.467Z"
}