Agent #7
Coldwell Banker · commercial · 17 yrs
Overview
agents / #7
Coldwell Banker · commercial · 17 yrs
Request
curl example
curl -sS \ "https://example-data.com/api/v1/agents/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/agents/7" ); const agent = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/agents.d.ts https://example-data.com/types/agents.d.ts
import type { Agent } from "./types/agents";
const res = await fetch(
"https://example-data.com/api/v1/agents/7"
);
const agent = (await res.json()) as Agent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/agents/7"
)
agent = res.json() Response
{
"id": 7,
"userId": 104,
"brokerage": "Coldwell Banker",
"licenseNumber": "KJ7H8M3KSF",
"specialty": "commercial",
"yearsExperience": 17,
"rating": 3.8,
"ratingCount": 71,
"createdAt": "2026-04-11T21:16:52.310Z"
}