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

res = requests.get(
    "https://example-data.com/api/v1/users/248"
)
user = res.json()
{
  "id": 248,
  "firstName": "Ken",
  "lastName": "Towne",
  "fullName": "Ken Towne",
  "username": "ken.towne",
  "email": "ken.towne@example.com",
  "phone": "(753) 908-2084",
  "bio": "artist, activist, environmentalist",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-248",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-248&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-248/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "ken.towne",
  "createdAt": "2024-09-17T09:41:46.691Z",
  "updatedAt": "2025-01-28T08:10:17.754Z"
}
Draftbit