showings #439
- listingId
- House in Rhodaton · Rhodaton
- prospectUserId
-
Celia D'Amore @celia_damore
- scheduledAt
- status
- scheduled
- notes
- Paens tres terga adfero carmen.
- createdAt
Overview
showings / #439
#439
#439
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/439" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/439" ); 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/439"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/439"
)
showing = res.json() Response
{
"id": 439,
"listingId": 163,
"prospectUserId": 24,
"scheduledAt": "2024-09-06T20:17:02.761Z",
"status": "scheduled",
"notes": "Paens tres terga adfero carmen.",
"createdAt": "2024-09-01T16:40:10.867Z"
}