example-data.com

agents / #34

Agent #34

Keller Williams · rental · 5 yrs

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/agents/34"
)
agent = res.json()
{
  "id": 34,
  "userId": 20,
  "brokerage": "Keller Williams",
  "licenseNumber": "VXI2CUIHHM",
  "specialty": "rental",
  "yearsExperience": 5,
  "rating": 4.5,
  "ratingCount": 21,
  "createdAt": "2025-07-13T14:28:21.775Z"
}
Draftbit