Eudora Glover-Watsica
slime supporter, friend 🌞
- Phone
- +1 202-555-0185 ext 2
Overview
people / #186
slime supporter, friend 🌞
Request
curl example
curl -sS \ "https://example-data.com/api/v1/people/186" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/people/186" ); 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/186"
);
const person = (await res.json()) as Person; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/people/186"
)
people = res.json() Response
{
"id": 186,
"fullName": "Eudora Glover-Watsica",
"firstName": "Eudora",
"lastName": "Glover-Watsica",
"email": "eudora.gloverwatsica-186@example.com",
"phone": "+1 202-555-0185 ext 2",
"occupation": "Legacy Quality Executive",
"city": "Monterey Park",
"countryAlpha2": "IN",
"bio": "slime supporter, friend 🌞",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-186",
"createdAt": "2025-02-02T03:57:38.182Z"
}