showings #424
- listingId
- House in Plantation · Plantation
- prospectUserId
-
Charity Crona @charity.crona12
- scheduledAt
- status
- no_show
- notes
- Territo demitto tracto.
- createdAt
Overview
showings / #424
#424
#424
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/424" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/424" ); 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/424"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/424"
)
showing = res.json() Response
{
"id": 424,
"listingId": 159,
"prospectUserId": 100,
"scheduledAt": "2026-05-03T05:19:30.310Z",
"status": "no_show",
"notes": "Territo demitto tracto.",
"createdAt": "2026-04-23T06:18:57.337Z"
}