Agent #40
Sotheby's International Realty · residential · 11 yrs
agents / #40
Sotheby's International Realty · residential · 11 yrs
curl -sS \
"https://example-data.com/api/v1/agents/40" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/agents/40"
);
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/40"
);
const agent = (await res.json()) as Agent;import requests
res = requests.get(
"https://example-data.com/api/v1/agents/40"
)
agent = res.json() {
"id": 40,
"userId": 204,
"brokerage": "Sotheby's International Realty",
"licenseNumber": "ZOXKNLVQKX",
"specialty": "residential",
"yearsExperience": 11,
"rating": 3.6,
"ratingCount": 78,
"createdAt": "2020-02-24T15:16:58.981Z"
}