showings #429
- listingId
- Condo in Port Billieport · Port Billieport
- prospectUserId
-
Arnaldo Friesen @arnaldo_friesen78
- scheduledAt
- status
- scheduled
- notes
- Solitudo vae creta defleo verus coma charisma iste credo.
- createdAt
Overview
showings / #429
#429
#429
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/429" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/429" ); 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/429"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/429"
)
showing = res.json() Response
{
"id": 429,
"listingId": 160,
"prospectUserId": 113,
"scheduledAt": "2025-04-20T19:53:05.043Z",
"status": "scheduled",
"notes": "Solitudo vae creta defleo verus coma charisma iste credo.",
"createdAt": "2025-04-16T22:40:55.563Z"
}