showings #229
- listingId
- Apartment in Fort Rhianna · Fort Rhianna
- prospectUserId
-
Hilda Crooks @hilda_crooks61
- scheduledAt
- status
- scheduled
- notes
- Spectaculum tremo tantillus clamo clibanus degusto deserunt.
- createdAt
Overview
showings / #229
#229
#229
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/229" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/229" ); 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/229"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/229"
)
showing = res.json() Response
{
"id": 229,
"listingId": 86,
"prospectUserId": 187,
"scheduledAt": "2025-09-10T16:14:52.976Z",
"status": "scheduled",
"notes": "Spectaculum tremo tantillus clamo clibanus degusto deserunt.",
"createdAt": "2025-09-14T11:58:11.180Z"
}