Jewell Olson
@jewell_olson2
sand lover
- Phone
- (754) 306-7709
- Joined
- 12/28/2025
users / #68
@jewell_olson2
sand lover
curl -sS \
"https://example-data.com/api/v1/users/68" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/68"
);
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/68"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/68"
)
user = res.json() {
"id": 68,
"firstName": "Jewell",
"lastName": "Olson",
"fullName": "Jewell Olson",
"username": "jewell_olson2",
"email": "jewell_olson2@example.com",
"phone": "(754) 306-7709",
"bio": "sand lover",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-68",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-68&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-68/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-12-28T14:27:44.351Z",
"updatedAt": "2026-05-02T04:57:58.415Z"
}