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

res = requests.get(
    "https://example-data.com/api/v1/users/41"
)
user = res.json()
{
  "id": 41,
  "firstName": "Amely",
  "lastName": "Daniel",
  "fullName": "Amely Daniel",
  "username": "amely_daniel",
  "email": "amely_daniel@example.com",
  "phone": "(904) 541-1294",
  "bio": "streamer",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-41",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-41&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-41/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2025-01-01T23:05:56.955Z",
  "updatedAt": "2026-02-13T20:37:23.163Z"
}
Draftbit