showings #446
- listingId
- Apartment in Fort Javonte · Fort Javonte
- prospectUserId
-
Amari Koch @amari.koch
- scheduledAt
- status
- scheduled
- notes
- Casso amita facere crustulum.
- createdAt
Overview
showings / #446
#446
#446
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/446" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/446" ); 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/446"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/446"
)
showing = res.json() Response
{
"id": 446,
"listingId": 166,
"prospectUserId": 130,
"scheduledAt": "2025-02-13T18:21:21.337Z",
"status": "scheduled",
"notes": "Casso amita facere crustulum.",
"createdAt": "2025-02-16T11:51:57.773Z"
}