showings #215
- listingId
- Condo in Okunevacester · Okunevacester
- prospectUserId
-
Jadon Nicolas @jadon.nicolas
- scheduledAt
- status
- scheduled
- notes
- Fuga a amitto vulpes similique timidus defungo urbs.
- createdAt
Overview
showings / #215
#215
#215
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/215" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/215" ); 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/215"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/215"
)
showing = res.json() Response
{
"id": 215,
"listingId": 81,
"prospectUserId": 213,
"scheduledAt": "2025-07-08T11:53:04.899Z",
"status": "scheduled",
"notes": "Fuga a amitto vulpes similique timidus defungo urbs.",
"createdAt": "2025-06-23T04:57:20.232Z"
}