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

res = requests.get(
    "https://example-data.com/api/v1/users/101"
)
user = res.json()
{
  "id": 101,
  "firstName": "Norbert",
  "lastName": "Jacobi",
  "fullName": "Norbert Jacobi",
  "username": "norbert_jacobi92",
  "email": "norbert_jacobi92@example.com",
  "phone": "(597) 509-0682",
  "bio": "schedule enthusiast  ⚛️",
  "avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-101",
  "thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-101&size=128",
  "coverImageUrl": "https://picsum.photos/seed/user-cover-101/1200/400",
  "emailVerified": false,
  "isActive": true,
  "twitterHandle": null,
  "createdAt": "2024-05-28T15:31:03.461Z",
  "updatedAt": "2024-10-15T20:47:50.218Z"
}
Draftbit