showings #367
- listingId
- Condo in Fort Evieshire · Fort Evieshire
- prospectUserId
-
Oliver Mitchell @oliver_mitchell50
- scheduledAt
- status
- scheduled
- notes
- Adipiscor beatus a aufero despecto curiositas caelestis supellex labore.
- createdAt
Overview
showings / #367
#367
#367
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/367" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/367" ); 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/367"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/367"
)
showing = res.json() Response
{
"id": 367,
"listingId": 135,
"prospectUserId": 194,
"scheduledAt": "2025-04-17T15:45:12.018Z",
"status": "scheduled",
"notes": "Adipiscor beatus a aufero despecto curiositas caelestis supellex labore.",
"createdAt": "2025-04-11T17:35:24.174Z"
}