showings #66
- listingId
- Apartment in Lorain · Lorain
- prospectUserId
-
Marilou Douglas @marilou.douglas
- scheduledAt
- status
- no_show
- notes
- Facere error uterque consequatur compono acerbitas.
- createdAt
Overview
showings / #66
#66
#66
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/66" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/66" ); 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/66"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/66"
)
showing = res.json() Response
{
"id": 66,
"listingId": 21,
"prospectUserId": 78,
"scheduledAt": "2026-04-28T22:52:39.391Z",
"status": "no_show",
"notes": "Facere error uterque consequatur compono acerbitas.",
"createdAt": "2026-05-03T04:22:52.643Z"
}