Izaiah Rempel
@izaiah_rempel
tusk enthusiast 🍻
- Phone
- +1 202-555-0130 ext 1
- Joined
- 3/20/2025
Overview
users / #31
@izaiah_rempel
tusk enthusiast 🍻
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/31" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/31" ); const user = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/users.d.ts https://example-data.com/types/users.d.ts
import type { User } from "./types/users";
const res = await fetch(
"https://example-data.com/api/v1/users/31"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/31"
)
user = res.json() Response
{
"id": 31,
"firstName": "Izaiah",
"lastName": "Rempel",
"fullName": "Izaiah Rempel",
"username": "izaiah_rempel",
"email": "izaiah_rempel@example.com",
"phone": "+1 202-555-0130 ext 1",
"bio": "tusk enthusiast 🍻",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-31",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-31&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-31/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "izaiah_rempel",
"createdAt": "2025-03-20T13:22:24.980Z",
"updatedAt": "2026-05-13T01:55:44.984Z"
}