Agent #31
Sotheby's International Realty · luxury · 8 yrs
agents / #31
Sotheby's International Realty · luxury · 8 yrs
curl -sS \
"https://example-data.com/api/v1/agents/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/agents/31"
);
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/31"
);
const agent = (await res.json()) as Agent;import requests
res = requests.get(
"https://example-data.com/api/v1/agents/31"
)
agent = res.json() {
"id": 31,
"userId": 121,
"brokerage": "Sotheby's International Realty",
"licenseNumber": "CIFUG7A5TT",
"specialty": "luxury",
"yearsExperience": 8,
"rating": 3.9,
"ratingCount": 186,
"createdAt": "2025-11-11T05:40:10.189Z"
}