example-data.com

agents / #22

Agent #22

Coldwell Banker · rental · 24 yrs

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/agents/22"
)
agent = res.json()
{
  "id": 22,
  "userId": 149,
  "brokerage": "Coldwell Banker",
  "licenseNumber": "GJ4UJY3KKN",
  "specialty": "rental",
  "yearsExperience": 24,
  "rating": 4.9,
  "ratingCount": 39,
  "createdAt": "2021-01-03T23:55:38.004Z"
}
Draftbit