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

res = requests.get(
    "https://example-data.com/api/v1/users/222"
)
user = res.json()
{
  "id": 222,
  "firstName": "Loren",
  "lastName": "Schmidt",
  "fullName": "Loren Schmidt",
  "username": "loren_schmidt",
  "email": "loren_schmidt@example.com",
  "phone": "(943) 340-0877",
  "bio": "thorn devotee, educator",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-222",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-222&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-222/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": "loren_schmidt",
  "createdAt": "2025-03-05T20:26:05.772Z",
  "updatedAt": "2025-06-15T08:26:16.962Z"
}
Draftbit