showings #39
- listingId
- House in La Mirada · La Mirada
- prospectUserId
-
Jennifer Hoeger @jennifer.hoeger
- scheduledAt
- status
- completed
- notes
- Pecus cribro defetiscor doloremque cometes ducimus.
- createdAt
Overview
showings / #39
#39
#39
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/39" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/39" ); 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/39"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/39"
)
showing = res.json() Response
{
"id": 39,
"listingId": 12,
"prospectUserId": 119,
"scheduledAt": "2025-05-01T00:04:36.743Z",
"status": "completed",
"notes": "Pecus cribro defetiscor doloremque cometes ducimus.",
"createdAt": "2025-04-23T01:32:54.538Z"
}