showings #122
- listingId
- House in Johnson City · Johnson City
- prospectUserId
-
Amparo Dietrich @amparo.dietrich
- scheduledAt
- status
- scheduled
- notes
- Canonicus eos atque quam tergiversatio nesciunt cruciamentum tener.
- createdAt
Overview
showings / #122
#122
#122
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/122" ); 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/122"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/122"
)
showing = res.json() Response
{
"id": 122,
"listingId": 45,
"prospectUserId": 159,
"scheduledAt": "2026-03-23T16:42:38.667Z",
"status": "scheduled",
"notes": "Canonicus eos atque quam tergiversatio nesciunt cruciamentum tener.",
"createdAt": "2026-02-23T06:06:40.219Z"
}