Agent #3
Keller Williams · residential · 24 yrs
agents / #3
Keller Williams · residential · 24 yrs
curl -sS \
"https://example-data.com/api/v1/agents/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/agents/3"
);
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/3"
);
const agent = (await res.json()) as Agent;import requests
res = requests.get(
"https://example-data.com/api/v1/agents/3"
)
agent = res.json() {
"id": 3,
"userId": 75,
"brokerage": "Keller Williams",
"licenseNumber": "GS9TOHGNBE",
"specialty": "residential",
"yearsExperience": 24,
"rating": 3.4,
"ratingCount": 279,
"createdAt": "2025-07-26T06:10:32.208Z"
}