Joseph Nitzsche
@joseph_nitzsche
developer, author
- Phone
- (636) 399-6838
- Joined
- 11/7/2024
users / #196
@joseph_nitzsche
developer, author
curl -sS \
"https://example-data.com/api/v1/users/196" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/196"
);
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/196"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/196"
)
user = res.json() {
"id": 196,
"firstName": "Joseph",
"lastName": "Nitzsche",
"fullName": "Joseph Nitzsche",
"username": "joseph_nitzsche",
"email": "joseph_nitzsche@example.com",
"phone": "(636) 399-6838",
"bio": "developer, author",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-196",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-196&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-196/1200/400",
"emailVerified": false,
"isActive": true,
"twitterHandle": null,
"createdAt": "2024-11-07T22:30:05.192Z",
"updatedAt": "2026-03-24T04:19:24.009Z"
}