showings #289
- listingId
- Land in New Jarrellcester · New Jarrellcester
- prospectUserId
-
Marcelina Grady @marcelina_grady19
- scheduledAt
- status
- scheduled
- notes
- Attollo ocer cras vitae tempus paens quo.
- createdAt
Overview
showings / #289
#289
#289
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/289" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/289" ); 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/289"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/289"
)
showing = res.json() Response
{
"id": 289,
"listingId": 107,
"prospectUserId": 241,
"scheduledAt": "2025-03-17T13:24:24.049Z",
"status": "scheduled",
"notes": "Attollo ocer cras vitae tempus paens quo.",
"createdAt": "2025-03-03T21:57:22.249Z"
}