showings #344
- listingId
- House in Folsom · Folsom
- prospectUserId
-
D'angelo Kling @dangelo_kling6
- scheduledAt
- status
- scheduled
- notes
- Somniculosus triduana vere.
- createdAt
Overview
showings / #344
#344
#344
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/344" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/344" ); 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/344"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/344"
)
showing = res.json() Response
{
"id": 344,
"listingId": 126,
"prospectUserId": 188,
"scheduledAt": "2025-12-29T18:29:16.489Z",
"status": "scheduled",
"notes": "Somniculosus triduana vere.",
"createdAt": "2025-12-20T09:38:01.750Z"
}