Sammy Schmidt
@sammy.schmidt
parent, activist, traveler
- Phone
- (914) 622-0557
- Joined
- 10/21/2024
users / #186
@sammy.schmidt
parent, activist, traveler
curl -sS \
"https://example-data.com/api/v1/users/186" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/186"
);
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/186"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/186"
)
user = res.json() {
"id": 186,
"firstName": "Sammy",
"lastName": "Schmidt",
"fullName": "Sammy Schmidt",
"username": "sammy.schmidt",
"email": "sammy.schmidt@example.com",
"phone": "(914) 622-0557",
"bio": "parent, activist, traveler",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-186",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-186&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-186/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2024-10-21T09:47:27.754Z",
"updatedAt": "2026-01-03T21:01:40.896Z"
}