example-data.com

agents / #19

Agent #19

Sotheby's International Realty · commercial · 6 yrs

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/agents/19"
)
agent = res.json()
{
  "id": 19,
  "userId": 77,
  "brokerage": "Sotheby's International Realty",
  "licenseNumber": "NX2J47QFQW",
  "specialty": "commercial",
  "yearsExperience": 6,
  "rating": 4.9,
  "ratingCount": 239,
  "createdAt": "2019-07-22T14:19:34.852Z"
}
Draftbit