Marta Harvey
@marta.harvey68
tabletop advocate ✊🏾
- Phone
- (253) 582-2457
- Joined
- 1/26/2025
users / #112
@marta.harvey68
tabletop advocate ✊🏾
curl -sS \
"https://example-data.com/api/v1/users/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/112"
);
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/112"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/112"
)
user = res.json() {
"id": 112,
"firstName": "Marta",
"lastName": "Harvey",
"fullName": "Marta Harvey",
"username": "marta.harvey68",
"email": "marta.harvey68@example.com",
"phone": "(253) 582-2457",
"bio": "tabletop advocate ✊🏾",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-112",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-112&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-112/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "marta.harvey68",
"createdAt": "2025-01-26T15:25:48.587Z",
"updatedAt": "2026-03-19T08:50:28.788Z"
}