Jo Haag-Mayer
@jo_haag-mayer
disappointment enthusiast, foodie
- Phone
- +1 202-555-0153 ext 1
- Joined
- 1/26/2026
Overview
users / #54
@jo_haag-mayer
disappointment enthusiast, foodie
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/54" ); 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/54"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/54"
)
user = res.json() Response
{
"id": 54,
"firstName": "Jo",
"lastName": "Haag-Mayer",
"fullName": "Jo Haag-Mayer",
"username": "jo_haag-mayer",
"email": "jo_haag-mayer@example.com",
"phone": "+1 202-555-0153 ext 1",
"bio": "disappointment enthusiast, foodie",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-54",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-54&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-54/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2026-01-26T08:48:39.774Z",
"updatedAt": "2026-04-01T05:28:58.497Z"
}