Lamont Schroeder
@lamont.schroeder89
statue advocate, environmentalist
- Phone
- +1 202-555-0179 ext 2
- Joined
- 4/12/2026
Overview
users / #180
@lamont.schroeder89
statue advocate, environmentalist
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/180" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/180" ); const user = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/users.d.ts https://example-data.com/types/users.d.ts
import type { User } from "./types/users";
const res = await fetch(
"https://example-data.com/api/v1/users/180"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/180"
)
user = res.json() Response
{
"id": 180,
"firstName": "Lamont",
"lastName": "Schroeder",
"fullName": "Lamont Schroeder",
"username": "lamont.schroeder89",
"email": "lamont.schroeder89@example.com",
"phone": "+1 202-555-0179 ext 2",
"bio": "statue advocate, environmentalist",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-180",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-180&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-180/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2026-04-12T22:15:41.663Z",
"updatedAt": "2026-04-18T11:52:13.334Z"
}