showings #303
- listingId
- Apartment in Duluth · Duluth
- prospectUserId
-
Audreanne Will @audreanne_will
- scheduledAt
- status
- completed
- notes
- Conor adfectus tripudio conturbo.
- createdAt
Overview
showings / #303
#303
#303
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/303" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/303" ); 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/303"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/303"
)
showing = res.json() Response
{
"id": 303,
"listingId": 112,
"prospectUserId": 127,
"scheduledAt": "2025-02-04T08:17:15.331Z",
"status": "completed",
"notes": "Conor adfectus tripudio conturbo.",
"createdAt": "2025-01-30T11:48:04.169Z"
}