example-data.com

agents / #37

Agent #37

Coldwell Banker · rental · 30 yrs

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/agents/37"
)
agent = res.json()
{
  "id": 37,
  "userId": 109,
  "brokerage": "Coldwell Banker",
  "licenseNumber": "4J8U05QVXO",
  "specialty": "rental",
  "yearsExperience": 30,
  "rating": 3.4,
  "ratingCount": 126,
  "createdAt": "2020-10-07T01:58:37.819Z"
}
Draftbit