Colby Kovacek
@colby_kovacek40
flight junkie
- Phone
- (404) 481-8733
- Joined
- 4/20/2025
users / #85
@colby_kovacek40
flight junkie
curl -sS \
"https://example-data.com/api/v1/users/85" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/85"
);
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/85"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/85"
)
user = res.json() {
"id": 85,
"firstName": "Colby",
"lastName": "Kovacek",
"fullName": "Colby Kovacek",
"username": "colby_kovacek40",
"email": "colby_kovacek40@example.com",
"phone": "(404) 481-8733",
"bio": "flight junkie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-85",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-85&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-85/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-04-20T02:33:42.279Z",
"updatedAt": "2026-03-29T11:06:33.706Z"
}