Everett Yundt
@everett_yundt11
artist
- Phone
- (574) 887-6869
- Joined
- 11/27/2025
users / #44
@everett_yundt11
artist
curl -sS \
"https://example-data.com/api/v1/users/44" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/44"
);
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/44"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/44"
)
user = res.json() {
"id": 44,
"firstName": "Everett",
"lastName": "Yundt",
"fullName": "Everett Yundt",
"username": "everett_yundt11",
"email": "everett_yundt11@example.com",
"phone": "(574) 887-6869",
"bio": "artist",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-44",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-44&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-44/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "everett_yundt11",
"createdAt": "2025-11-27T01:17:00.946Z",
"updatedAt": "2026-05-21T13:10:59.917Z"
}