showings #365
- listingId
- Condo in Savannah · Savannah
- prospectUserId
-
Kaden Brekke @kaden_brekke
- scheduledAt
- status
- no_show
- notes
- Textus tandem amiculum incidunt pecco creo atrocitas.
- createdAt
Overview
showings / #365
#365
#365
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/365" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/365" ); 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/365"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/365"
)
showing = res.json() Response
{
"id": 365,
"listingId": 134,
"prospectUserId": 67,
"scheduledAt": "2026-05-03T10:53:33.569Z",
"status": "no_show",
"notes": "Textus tandem amiculum incidunt pecco creo atrocitas.",
"createdAt": "2026-04-05T13:36:35.317Z"
}