Gavin Lowe
@gavin_lowe
person, gamer, artist 🇲🇺
- gavin_lowe@example.com
- Phone
- (648) 399-5850
- Joined
- 1/11/2026
users / #17
@gavin_lowe
person, gamer, artist 🇲🇺
curl -sS \
"https://example-data.com/api/v1/users/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/users/17"
);
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/17"
);
const user = (await res.json()) as User;import requests
res = requests.get(
"https://example-data.com/api/v1/users/17"
)
user = res.json() {
"id": 17,
"firstName": "Gavin",
"lastName": "Lowe",
"fullName": "Gavin Lowe",
"username": "gavin_lowe",
"email": "gavin_lowe@example.com",
"phone": "(648) 399-5850",
"bio": "person, gamer, artist 🇲🇺",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-17",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-17&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-17/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "gavin_lowe",
"createdAt": "2026-01-11T00:38:03.100Z",
"updatedAt": "2026-05-16T20:50:51.571Z"
}