showings #18
- listingId
- House in South Maribelton · South Maribelton
- prospectUserId
-
Terence Lemke @terence.lemke85
- scheduledAt
- status
- scheduled
- notes
- Beatae cicuta vergo a celo abstergo crinis audacia.
- createdAt
Overview
showings / #18
#18
#18
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/18" ); 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/18"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/18"
)
showing = res.json() Response
{
"id": 18,
"listingId": 6,
"prospectUserId": 74,
"scheduledAt": "2025-09-11T13:03:16.172Z",
"status": "scheduled",
"notes": "Beatae cicuta vergo a celo abstergo crinis audacia.",
"createdAt": "2025-09-10T03:08:27.321Z"
}