example-data.com

agents / #33

Agent #33

Century 21 · commercial · 25 yrs

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/agents/33"
)
agent = res.json()
{
  "id": 33,
  "userId": 97,
  "brokerage": "Century 21",
  "licenseNumber": "81MV2QLAEG",
  "specialty": "commercial",
  "yearsExperience": 25,
  "rating": 3.6,
  "ratingCount": 39,
  "createdAt": "2018-03-29T00:07:18.566Z"
}
Draftbit