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

res = requests.get(
    "https://example-data.com/api/v1/users/65"
)
user = res.json()
{
  "id": 65,
  "firstName": "Enos",
  "lastName": "Hamill",
  "fullName": "Enos Hamill",
  "username": "enos_hamill",
  "email": "enos_hamill@example.com",
  "phone": "(366) 413-0066",
  "bio": "minion supporter, nerd 🏯",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-65",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-65&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-65/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2024-10-10T13:36:47.392Z",
  "updatedAt": "2026-03-28T18:48:28.008Z"
}
Draftbit