showings #127
- listingId
- Townhouse in Owenmouth · Owenmouth
- prospectUserId
-
Loren Schmidt @loren_schmidt
- scheduledAt
- status
- scheduled
- notes
- Voluptatibus succedo tener tondeo accendo cuius attonbitus.
- createdAt
Overview
showings / #127
#127
#127
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/127" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/127" ); 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/127"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/127"
)
showing = res.json() Response
{
"id": 127,
"listingId": 47,
"prospectUserId": 222,
"scheduledAt": "2026-05-11T16:13:35.509Z",
"status": "scheduled",
"notes": "Voluptatibus succedo tener tondeo accendo cuius attonbitus.",
"createdAt": "2026-05-01T02:28:35.402Z"
}