showings #317
- listingId
- Townhouse in Lake Emelyberg · Lake Emelyberg
- prospectUserId
-
Gerda Streich @gerda_streich
- scheduledAt
- status
- scheduled
- notes
- Adflicto alter virtus velut copiose coniecto subnecto iure aureus.
- createdAt
Overview
showings / #317
#317
#317
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/317" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/317" ); 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/317"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/317"
)
showing = res.json() Response
{
"id": 317,
"listingId": 117,
"prospectUserId": 126,
"scheduledAt": "2026-05-06T20:26:40.857Z",
"status": "scheduled",
"notes": "Adflicto alter virtus velut copiose coniecto subnecto iure aureus.",
"createdAt": "2026-04-23T15:09:09.961Z"
}