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

res = requests.get(
    "https://example-data.com/api/v1/users/12"
)
user = res.json()
{
  "id": 12,
  "firstName": "Mara",
  "lastName": "Johnson",
  "fullName": "Mara Johnson",
  "username": "mara.johnson17",
  "email": "mara.johnson17@example.com",
  "phone": "(423) 704-5934",
  "bio": "developer, friend",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-12",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-12&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-12/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2024-10-22T04:15:55.486Z",
  "updatedAt": "2026-05-02T18:45:09.999Z"
}
Draftbit