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

res = requests.get(
    "https://example-data.com/api/v1/users/123"
)
user = res.json()
{
  "id": 123,
  "firstName": "Telly",
  "lastName": "Sanford",
  "fullName": "Telly Sanford",
  "username": "telly.sanford",
  "email": "telly.sanford@example.com",
  "phone": "(662) 481-4082",
  "bio": "author, creator",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-123",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-123&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-123/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2024-12-31T21:45:35.357Z",
  "updatedAt": "2025-12-01T13:43:40.183Z"
}
Draftbit