showings #218
- listingId
- House in Fort Randi · Fort Randi
- prospectUserId
-
Maymie Boehm @maymie.boehm90
- scheduledAt
- status
- no_show
- notes
- Sumo perspiciatis calcar cribro.
- createdAt
Overview
showings / #218
#218
#218
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/218" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/218" ); 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/218"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/218"
)
showing = res.json() Response
{
"id": 218,
"listingId": 82,
"prospectUserId": 48,
"scheduledAt": "2026-05-06T21:27:56.353Z",
"status": "no_show",
"notes": "Sumo perspiciatis calcar cribro.",
"createdAt": "2026-04-17T13:01:14.105Z"
}