Guy Christiansen
@guy.christiansen40
seal junkie
- Phone
- +1 202-555-0120 ext 1
- Joined
- 4/30/2025
Overview
users / #21
@guy.christiansen40
seal junkie
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/21" ); 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/21"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/21"
)
user = res.json() Response
{
"id": 21,
"firstName": "Guy",
"lastName": "Christiansen",
"fullName": "Guy Christiansen",
"username": "guy.christiansen40",
"email": "guy.christiansen40@example.com",
"phone": "+1 202-555-0120 ext 1",
"bio": "seal junkie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-21",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-21&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-21/1200/400",
"emailVerified": false,
"isActive": true,
"twitterHandle": "guy.christiansen40",
"createdAt": "2025-04-30T16:52:14.940Z",
"updatedAt": "2026-03-01T22:27:15.988Z"
}