showings #364
- listingId
- Condo in Savannah · Savannah
- prospectUserId
-
Matt Kuhic @matt_kuhic57
- scheduledAt
- status
- scheduled
- notes
- Comedo accommodo arguo titulus patria.
- createdAt
Overview
showings / #364
#364
#364
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/364" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/364" ); 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/364"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/364"
)
showing = res.json() Response
{
"id": 364,
"listingId": 134,
"prospectUserId": 226,
"scheduledAt": "2026-01-20T15:18:10.402Z",
"status": "scheduled",
"notes": "Comedo accommodo arguo titulus patria.",
"createdAt": "2026-01-04T02:11:02.855Z"
}