Oliver Mitchell
@oliver_mitchell50
scorn junkie
- Phone
- (923) 253-8139
- Joined
- 3/11/2025
users / #194
@oliver_mitchell50
scorn junkie
curl -sS \
"https://example-data.com/api/v1/users/194" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/194"
);
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/194"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/194"
)
user = res.json() {
"id": 194,
"firstName": "Oliver",
"lastName": "Mitchell",
"fullName": "Oliver Mitchell",
"username": "oliver_mitchell50",
"email": "oliver_mitchell50@example.com",
"phone": "(923) 253-8139",
"bio": "scorn junkie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-194",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-194&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-194/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "oliver_mitchell50",
"createdAt": "2025-03-11T17:00:16.498Z",
"updatedAt": "2025-12-13T19:03:19.010Z"
}