showings #100
- listingId
- Land in Fort King · Fort King
- prospectUserId
-
Melba Collier @melba.collier
- scheduledAt
- status
- completed
- notes
- Vinum decretum molestias.
- createdAt
Overview
showings / #100
#100
#100
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/100" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/100" ); 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/100"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/100"
)
showing = res.json() Response
{
"id": 100,
"listingId": 36,
"prospectUserId": 19,
"scheduledAt": "2025-05-20T05:23:26.908Z",
"status": "completed",
"notes": "Vinum decretum molestias.",
"createdAt": "2025-05-11T12:18:35.897Z"
}