showings #25
- listingId
- Land in South Emmie · South Emmie
- prospectUserId
-
Matt Kuhic @matt_kuhic57
- scheduledAt
- status
- completed
- notes
- Constans cupiditate surculus textor dicta triumphus tempora facere.
- createdAt
Overview
showings / #25
#25
#25
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/25" ); 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/25"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/25"
)
showing = res.json() Response
{
"id": 25,
"listingId": 7,
"prospectUserId": 226,
"scheduledAt": "2026-05-19T13:27:28.764Z",
"status": "completed",
"notes": "Constans cupiditate surculus textor dicta triumphus tempora facere.",
"createdAt": "2026-05-11T10:47:25.318Z"
}