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

res = requests.get(
    "https://example-data.com/api/v1/users/209"
)
user = res.json()
{
  "id": 209,
  "firstName": "Otho",
  "lastName": "Nikolaus",
  "fullName": "Otho Nikolaus",
  "username": "otho.nikolaus99",
  "email": "otho.nikolaus99@example.com",
  "phone": "(955) 659-4544",
  "bio": "receptor junkie, person 🍥",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-209",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-209&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-209/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": "otho.nikolaus99",
  "createdAt": "2024-09-16T23:19:15.239Z",
  "updatedAt": "2025-03-06T08:57:38.613Z"
}
Draftbit