showings #299
- listingId
- Apartment in Blickside · Blickside
- prospectUserId
-
Lamont Huel @lamont.huel
- scheduledAt
- status
- completed
- notes
- Ustilo copiose vulgus ubi tempora.
- createdAt
Overview
showings / #299
#299
#299
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/299" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/299" ); 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/299"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/299"
)
showing = res.json() Response
{
"id": 299,
"listingId": 111,
"prospectUserId": 69,
"scheduledAt": "2025-02-07T07:29:55.376Z",
"status": "completed",
"notes": "Ustilo copiose vulgus ubi tempora.",
"createdAt": "2025-01-31T04:12:15.380Z"
}