showings #212
- listingId
- Townhouse in Port Libbie · Port Libbie
- prospectUserId
-
Lamont Huel @lamont.huel
- scheduledAt
- status
- cancelled
- notes
- Valeo tabesco adulescens.
- createdAt
Overview
showings / #212
#212
#212
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/212" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/212" ); 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/212"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/212"
)
showing = res.json() Response
{
"id": 212,
"listingId": 79,
"prospectUserId": 69,
"scheduledAt": "2025-04-15T16:56:51.861Z",
"status": "cancelled",
"notes": "Valeo tabesco adulescens.",
"createdAt": "2025-03-25T02:23:35.977Z"
}