showings #75
- listingId
- Land in Nyasiaberg · Nyasiaberg
- prospectUserId
-
Myrtie Daniel @myrtie_daniel33
- scheduledAt
- status
- no_show
- notes
- Quidem absorbeo amissio aggredior delinquo necessitatibus cruciamentum advoco tego.
- createdAt
Overview
showings / #75
#75
#75
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/75" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/75" ); 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/75"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/75"
)
showing = res.json() Response
{
"id": 75,
"listingId": 26,
"prospectUserId": 45,
"scheduledAt": "2025-11-04T20:20:13.199Z",
"status": "no_show",
"notes": "Quidem absorbeo amissio aggredior delinquo necessitatibus cruciamentum advoco tego.",
"createdAt": "2025-10-12T07:27:51.890Z"
}