example-data.com

agents / #7

Agent #7

Coldwell Banker · commercial · 17 yrs

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/agents/7" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/agents/7"
);
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/7"
);
const agent = (await res.json()) as Agent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/agents/7"
)
agent = res.json()
{
  "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"
}
Draftbit