Sarah West
@sarah.west
scientist, friend, dreamer 🇧🇮
- sarah.west@example.com
- Phone
- +1 202-555-0116 ext 3
- Joined
- 3/27/2026
Overview
users / #217
@sarah.west
scientist, friend, dreamer 🇧🇮
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/217" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/217" ); 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/217"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/217"
)
user = res.json() Response
{
"id": 217,
"firstName": "Sarah",
"lastName": "West",
"fullName": "Sarah West",
"username": "sarah.west",
"email": "sarah.west@example.com",
"phone": "+1 202-555-0116 ext 3",
"bio": "scientist, friend, dreamer 🇧🇮",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-217",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-217&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-217/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "sarah.west",
"createdAt": "2026-03-27T07:34:22.165Z",
"updatedAt": "2026-04-22T06:41:53.528Z"
}