showings #92
- listingId
- House in Laredo · Laredo
- prospectUserId
-
Mia Renner @mia.renner47
- scheduledAt
- status
- scheduled
- notes
- Id color aqua ambulo infit curto creta cernuus sequi.
- createdAt
Overview
showings / #92
#92
#92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/92" ); 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/92"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/92"
)
showing = res.json() Response
{
"id": 92,
"listingId": 33,
"prospectUserId": 212,
"scheduledAt": "2025-07-05T03:41:59.391Z",
"status": "scheduled",
"notes": "Id color aqua ambulo infit curto creta cernuus sequi.",
"createdAt": "2025-06-26T13:28:05.804Z"
}