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

res = requests.get(
    "https://example-data.com/api/v1/users/90"
)
user = res.json()
{
  "id": 90,
  "firstName": "Myrl",
  "lastName": "Pollich",
  "fullName": "Myrl Pollich",
  "username": "myrl.pollich",
  "email": "myrl.pollich@example.com",
  "phone": "(710) 404-5333",
  "bio": "toaster fan  🇺🇾",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-90",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-90&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-90/1200/400",
  "emailVerified": true,
  "isActive": true,
  "twitterHandle": "myrl.pollich",
  "createdAt": "2025-06-20T20:46:35.690Z",
  "updatedAt": "2025-12-17T07:21:16.900Z"
}
Draftbit