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

res = requests.get(
    "https://example-data.com/api/v1/users/39"
)
user = res.json()
{
  "id": 39,
  "firstName": "Margaretta",
  "lastName": "Barrows",
  "fullName": "Margaretta Barrows",
  "username": "margaretta_barrows41",
  "email": "margaretta_barrows41@example.com",
  "phone": "(761) 647-5098",
  "bio": "nerd, designer, engineer 🔕",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-39",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-39&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-39/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "margaretta_barrows41",
  "createdAt": "2025-01-22T16:24:38.820Z",
  "updatedAt": "2025-10-03T01:11:25.571Z"
}
Draftbit