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

res = requests.get(
    "https://example-data.com/api/v1/users/214"
)
user = res.json()
{
  "id": 214,
  "firstName": "Ressie",
  "lastName": "Howell-Hodkiewicz",
  "fullName": "Ressie Howell-Hodkiewicz",
  "username": "ressie_howell-hodkiewicz35",
  "email": "ressie_howell-hodkiewicz35@example.com",
  "phone": "(530) 403-5425",
  "bio": "environmentalist, inventor, activist",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-214",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-214&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-214/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": "ressie_howell-hodkiewicz35",
  "createdAt": "2025-02-02T23:22:06.118Z",
  "updatedAt": "2025-11-30T02:26:04.102Z"
}
Draftbit