showings #220
- listingId
- House in Philipside · Philipside
- prospectUserId
-
Vida Kunde-Koepp @vida_kunde-koepp95
- scheduledAt
- status
- no_show
- notes
- Basium reprehenderit defetiscor temperantia ambitus tristis aut mollitia.
- createdAt
Overview
showings / #220
#220
#220
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/220" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/220" ); 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/220"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/220"
)
showing = res.json() Response
{
"id": 220,
"listingId": 83,
"prospectUserId": 109,
"scheduledAt": "2026-06-07T13:26:36.349Z",
"status": "no_show",
"notes": "Basium reprehenderit defetiscor temperantia ambitus tristis aut mollitia.",
"createdAt": "2026-05-15T21:35:26.890Z"
}