example-data.com

showings / #179

listingId
Apartment in Port Gino · Port Gino
prospectUserId
223
scheduledAt
status
completed
notes
Subvenio totus tot accedo damno nisi crebro.
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/showings/179" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/showings/179"
);
const showing = await res.json();
import type { Showing } from "https://example-data.com/types/showings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/showings/179"
);
const showing = (await res.json()) as Showing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/showings/179"
)
showing = res.json()
{
  "id": 179,
  "listingId": 66,
  "prospectUserId": 223,
  "scheduledAt": "2024-12-29T23:31:46.108Z",
  "status": "completed",
  "notes": "Subvenio totus tot accedo damno nisi crebro.",
  "createdAt": "2024-12-25T06:07:23.018Z"
}
Draftbit