example-data.com

agents / #35

Agent #35

Keller Williams · luxury · 8 yrs

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/agents/35"
)
agent = res.json()
{
  "id": 35,
  "userId": 72,
  "brokerage": "Keller Williams",
  "licenseNumber": "5GZWGN4WDV",
  "specialty": "luxury",
  "yearsExperience": 8,
  "rating": 4,
  "ratingCount": 88,
  "createdAt": "2018-02-16T12:32:48.891Z"
}
Draftbit