Agent #30
Keller Williams · land · 31 yrs
agents / #30
Keller Williams · land · 31 yrs
curl -sS \
"https://example-data.com/api/v1/agents/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/agents/30"
);
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/30"
);
const agent = (await res.json()) as Agent;import requests
res = requests.get(
"https://example-data.com/api/v1/agents/30"
)
agent = res.json() {
"id": 30,
"userId": 26,
"brokerage": "Keller Williams",
"licenseNumber": "3FS31R40E7",
"specialty": "land",
"yearsExperience": 31,
"rating": 4.2,
"ratingCount": 272,
"createdAt": "2022-04-29T07:54:16.944Z"
}