Theresia Collins
@theresia_collins86
foodie, artist, scientist 🤱🏿
- Phone
- +1 202-555-0162 ext 1
- Joined
- 4/13/2025
Overview
users / #63
@theresia_collins86
foodie, artist, scientist 🤱🏿
Request
curl example
curl -sS \ "https://example-data.com/api/v1/users/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/users/63" ); 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/63"
);
const user = (await res.json()) as User; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/users/63"
)
user = res.json() Response
{
"id": 63,
"firstName": "Theresia",
"lastName": "Collins",
"fullName": "Theresia Collins",
"username": "theresia_collins86",
"email": "theresia_collins86@example.com",
"phone": "+1 202-555-0162 ext 1",
"bio": "foodie, artist, scientist 🤱🏿",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-63",
"thumbnailUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=user-63&size=128",
"coverImageUrl": "https://picsum.photos/seed/user-cover-63/1200/400",
"emailVerified": true,
"isActive": true,
"twitterHandle": null,
"createdAt": "2025-04-13T03:13:47.934Z",
"updatedAt": "2025-12-03T08:46:44.744Z"
}