Agent #32
eXp Realty · land · 32 yrs
curl -sS \
"https://example-data.com/api/v1/agents/32" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/agents/32"
);
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/32"
);
const agent = (await res.json()) as Agent;import requests
res = requests.get(
"https://example-data.com/api/v1/agents/32"
)
agent = res.json() {
"id": 32,
"userId": 22,
"brokerage": "eXp Realty",
"licenseNumber": "SSUXH40WBW",
"specialty": "land",
"yearsExperience": 32,
"rating": 4,
"ratingCount": 247,
"createdAt": "2024-09-22T08:58:23.060Z"
}