Tabitha Ruecker
@tabitha.ruecker
film lover, teacher, engineer 🤦🏼♀️
- Phone
- (765) 848-2585
- Joined
- 10/30/2025
users / #197
@tabitha.ruecker
film lover, teacher, engineer 🤦🏼♀️
curl -sS \
"https://example-data.com/api/v1/users/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/197"
);
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/197"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/197"
)
user = res.json() {
"id": 197,
"firstName": "Tabitha",
"lastName": "Ruecker",
"fullName": "Tabitha Ruecker",
"username": "tabitha.ruecker",
"email": "tabitha.ruecker@example.com",
"phone": "(765) 848-2585",
"bio": "film lover, teacher, engineer 🤦🏼♀️",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-197",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-197&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-197/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-10-30T11:02:07.807Z",
"updatedAt": "2025-12-26T04:13:35.416Z"
}