showings #288
- listingId
- Land in New Jarrellcester · New Jarrellcester
- prospectUserId
-
Karlee MacGyver @karlee_macgyver
- scheduledAt
- status
- completed
- notes
- Defendo conicio defungo.
- createdAt
Overview
showings / #288
#288
#288
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/288" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/288" ); 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/288"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/288"
)
showing = res.json() Response
{
"id": 288,
"listingId": 107,
"prospectUserId": 228,
"scheduledAt": "2025-01-20T01:03:16.485Z",
"status": "completed",
"notes": "Defendo conicio defungo.",
"createdAt": "2025-01-04T18:29:18.913Z"
}