Agent #39
Coldwell Banker · commercial · 27 yrs
agents / #39
Coldwell Banker · commercial · 27 yrs
curl -sS \
"https://example-data.com/api/v1/agents/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/agents/39"
);
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/39"
);
const agent = (await res.json()) as Agent;import requests
res = requests.get(
"https://example-data.com/api/v1/agents/39"
)
agent = res.json() {
"id": 39,
"userId": 87,
"brokerage": "Coldwell Banker",
"licenseNumber": "8BM56GB7IC",
"specialty": "commercial",
"yearsExperience": 27,
"rating": 4.8,
"ratingCount": 218,
"createdAt": "2024-09-17T03:02:08.167Z"
}