example-data.com

agents / #18

Agent #18

Compass · luxury · 18 yrs

Component variants

Related

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

const res = await fetch(
  "https://example-data.com/api/v1/agents/18"
);
const agent = (await res.json()) as Agent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/agents/18"
)
agent = res.json()
{
  "id": 18,
  "userId": 219,
  "brokerage": "Compass",
  "licenseNumber": "VDETL0U92Y",
  "specialty": "luxury",
  "yearsExperience": 18,
  "rating": 3.1,
  "ratingCount": 125,
  "createdAt": "2026-01-28T00:09:08.888Z"
}
Draftbit