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

res = requests.get(
    "https://example-data.com/api/v1/users/21"
)
user = res.json()
{
  "id": 21,
  "firstName": "Guy",
  "lastName": "Christiansen",
  "fullName": "Guy Christiansen",
  "username": "guy.christiansen40",
  "email": "guy.christiansen40@example.com",
  "phone": "(890) 818-1966",
  "bio": "seal junkie",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-21",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-21&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-21/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": "guy.christiansen40",
  "createdAt": "2025-04-30T16:52:14.940Z",
  "updatedAt": "2026-03-01T22:27:15.988Z"
}
Draftbit