showings #351
- listingId
- House in Fort Rosalynfort · Fort Rosalynfort
- prospectUserId
-
Matt Kuhic @matt_kuhic57
- scheduledAt
- status
- no_show
- notes
- Sequi abutor maiores cernuus acsi cado.
- createdAt
Overview
showings / #351
#351
#351
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/351" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/351" ); 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/351"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/351"
)
showing = res.json() Response
{
"id": 351,
"listingId": 128,
"prospectUserId": 226,
"scheduledAt": "2026-04-18T15:30:07.670Z",
"status": "no_show",
"notes": "Sequi abutor maiores cernuus acsi cado.",
"createdAt": "2026-03-26T05:11:56.085Z"
}