showings #133
- listingId
- House in Yorba Linda · Yorba Linda
- prospectUserId
-
Talon Turner @talon.turner59
- scheduledAt
- status
- completed
- notes
- Tabernus eum porro stultus cupio terreo.
- createdAt
Overview
showings / #133
#133
#133
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/133" ); 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/133"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/133"
)
showing = res.json() Response
{
"id": 133,
"listingId": 50,
"prospectUserId": 166,
"scheduledAt": "2025-02-06T17:32:11.822Z",
"status": "completed",
"notes": "Tabernus eum porro stultus cupio terreo.",
"createdAt": "2025-01-25T03:31:07.804Z"
}