example-data.com
curl -sS \
  "https://example-data.com/api/v1/users/31" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/users/31"
);
const user = await res.json();
import type { User } from "https://example-data.com/types/users.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/users/31"
);
const user = (await res.json()) as User;
import requests

res = requests.get(
    "https://example-data.com/api/v1/users/31"
)
user = res.json()
{
  "id": 31,
  "firstName": "Izaiah",
  "lastName": "Rempel",
  "fullName": "Izaiah Rempel",
  "username": "izaiah_rempel",
  "email": "izaiah_rempel@example.com",
  "phone": "(596) 742-8813",
  "bio": "tusk enthusiast  🍻",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-31",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-31&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-31/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "izaiah_rempel",
  "createdAt": "2025-03-20T13:22:24.980Z",
  "updatedAt": "2026-05-13T01:55:44.984Z"
}
Draftbit