showings #256
- listingId
- Condo in Weissnatworth · Weissnatworth
- prospectUserId
-
Pinkie Denesik @pinkie_denesik32
- scheduledAt
- status
- scheduled
- notes
- Una adicio synagoga trucido delectus canto virga.
- createdAt
Overview
showings / #256
#256
#256
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/256" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/256" ); 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/256"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/256"
)
showing = res.json() Response
{
"id": 256,
"listingId": 96,
"prospectUserId": 88,
"scheduledAt": "2025-05-28T06:18:28.173Z",
"status": "scheduled",
"notes": "Una adicio synagoga trucido delectus canto virga.",
"createdAt": "2025-06-02T10:01:11.847Z"
}