example-data.com

agents / #20

Agent #20

Century 21 · land · 23 yrs

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/agents/20"
)
agent = res.json()
{
  "id": 20,
  "userId": 143,
  "brokerage": "Century 21",
  "licenseNumber": "Y9A9AAUVR0",
  "specialty": "land",
  "yearsExperience": 23,
  "rating": 4.6,
  "ratingCount": 288,
  "createdAt": "2019-12-01T00:47:01.749Z"
}
Draftbit