Otho Nikolaus
@otho.nikolaus99
receptor junkie, person 🍥
- Phone
- +1 202-555-0108 ext 3
- Joined
- 9/16/2024
Overview
users / #209
@otho.nikolaus99
receptor junkie, person 🍥
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/209" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/209" ); 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/209"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/209"
)
user = res.json() Response
{
"id": 209,
"firstName": "Otho",
"lastName": "Nikolaus",
"fullName": "Otho Nikolaus",
"username": "otho.nikolaus99",
"email": "otho.nikolaus99@example.com",
"phone": "+1 202-555-0108 ext 3",
"bio": "receptor junkie, person 🍥",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-209",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-209&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-209/1200/400",
"emailVerified": false,
"isActive": true,
"twitterHandle": "otho.nikolaus99",
"createdAt": "2024-09-16T23:19:15.239Z",
"updatedAt": "2025-03-06T08:57:38.613Z"
}