showings #213
- listingId
- Apartment in Adamsbury · Adamsbury
- prospectUserId
-
Kariane Schmitt @kariane.schmitt97
- scheduledAt
- status
- completed
- notes
- Tutis cohibeo timor annus territo cohibeo solvo.
- createdAt
Overview
showings / #213
#213
#213
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/213" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/213" ); 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/213"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/213"
)
showing = res.json() Response
{
"id": 213,
"listingId": 80,
"prospectUserId": 32,
"scheduledAt": "2025-02-04T15:16:26.421Z",
"status": "completed",
"notes": "Tutis cohibeo timor annus territo cohibeo solvo.",
"createdAt": "2025-02-08T23:51:34.385Z"
}