Velda Sporer
bend supporter, grad
- Phone
- +1 202-555-0147 ext 2
Overview
people / #148
bend supporter, grad
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/148" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/148" ); const person = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/people.d.ts https://example-data.com/types/people.d.ts
import type { Person } from "./types/people";
const res = await fetch(
"https://example-data.com/api/v1/people/148"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/148"
)
people = res.json() Response
{
"id": 148,
"fullName": "Velda Sporer",
"firstName": "Velda",
"lastName": "Sporer",
"email": "velda.sporer-148@example.com",
"phone": "+1 202-555-0147 ext 2",
"occupation": "Principal Configuration Assistant",
"city": "West Eriberto",
"countryAlpha2": "AT",
"bio": "bend supporter, grad",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-148",
"createdAt": "2024-07-05T21:26:29.136Z"
}