Agent #14
eXp Realty · rental · 6 yrs
agents / #14
eXp Realty · rental · 6 yrs
curl -sS \
"https://example-data.com/api/v1/agents/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/agents/14"
);
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/14"
);
const agent = (await res.json()) as Agent;import requests
res = requests.get(
"https://example-data.com/api/v1/agents/14"
)
agent = res.json() {
"id": 14,
"userId": 217,
"brokerage": "eXp Realty",
"licenseNumber": "WR4CV498O9",
"specialty": "rental",
"yearsExperience": 6,
"rating": 4.9,
"ratingCount": 151,
"createdAt": "2025-08-20T08:01:57.216Z"
}