Oran Torphy
@oran_torphy
validity junkie, patriot 🙅🏾♀️
- oran_torphy@example.com
- Phone
- +1 202-555-0188 ext 2
- Joined
- 8/9/2025
Overview
users / #189
@oran_torphy
validity junkie, patriot 🙅🏾♀️
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/189" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/189" ); 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/189"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/189"
)
user = res.json() Response
{
"id": 189,
"firstName": "Oran",
"lastName": "Torphy",
"fullName": "Oran Torphy",
"username": "oran_torphy",
"email": "oran_torphy@example.com",
"phone": "+1 202-555-0188 ext 2",
"bio": "validity junkie, patriot 🙅🏾♀️",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-189",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-189&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-189/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": "oran_torphy",
"createdAt": "2025-08-09T04:23:19.436Z",
"updatedAt": "2026-04-28T09:35:37.085Z"
}