example-data.com

showings / #175

listingId
Apartment in North Marlenview · North Marlenview
prospectUserId
64
scheduledAt
status
scheduled
notes
Id solio combibo decet sperno artificiose creptio suspendo dignissimos cetera.
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/showings/175" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/showings/175"
);
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/175"
);
const showing = (await res.json()) as Showing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/showings/175"
)
showing = res.json()
{
  "id": 175,
  "listingId": 64,
  "prospectUserId": 64,
  "scheduledAt": "2024-09-20T06:31:42.675Z",
  "status": "scheduled",
  "notes": "Id solio combibo decet sperno artificiose creptio suspendo dignissimos cetera.",
  "createdAt": "2024-09-04T02:03:33.360Z"
}
Draftbit