people
people
Page 5 of 9.
-
Orpha Prohaska-Padberg
-
Merle Cassin
-
Verlie Buckridge
-
Jamar Fisher
-
Janice Jacobi
-
Krystal Bradtke
-
Mario Bradtke
-
Junior Daugherty-Greenholt
-
Anissa Conn
-
Manuel Turner
-
Enola Hilll
-
Newell Johnson
-
Cornelius Prohaska
-
Catalina Keebler
-
Emely Feeney
-
Jacynthe Murazik
-
Kailey Buckridge
-
Winfield Doyle
-
Phyllis Thiel
-
Rosa Welch
-
Hazel Reynolds
-
Katharina McClure
-
Delpha Bradtke
-
Herbert Hahn
-
Orpha Prohaska-Padberg
ostrich advocate, author 🤜🏼
-
Merle Cassin
model
-
Verlie Buckridge
blogger, filmmaker, coach
-
Jamar Fisher
futon advocate, inventor 🟧
-
Janice Jacobi
streamer, founder
-
Krystal Bradtke
typewriter lover, developer 🇪🇬
-
Mario Bradtke
cleaner fan
-
Junior Daugherty-Greenholt
leader, leader, geek
-
Anissa Conn
traveler, friend, dreamer
-
Manuel Turner
bug lover
-
Enola Hilll
kick devotee, foodie 🔤
-
Newell Johnson
founder, singer, singer
-
Cornelius Prohaska
arcade devotee, designer 💱
-
Catalina Keebler
coach
-
Emely Feeney
streamer, designer, engineer
-
Jacynthe Murazik
blogger, philosopher
-
Kailey Buckridge
grandson devotee
-
Winfield Doyle
geek, foodie
-
Phyllis Thiel
educator, foodie, photographer 👈🏿
-
Rosa Welch
cop-out devotee, engineer ♏
-
Hazel Reynolds
cake junkie
-
Katharina McClure
traveler, author, creator 👌🏿
-
Delpha Bradtke
forage supporter
-
Herbert Hahn
artist, teacher, grad 🎉
Orpha Prohaska-Padberg
ostrich advocate, author 🤜🏼
- Phone
- (393) 381-1603
Merle Cassin
model
- Phone
- (586) 752-8808
Verlie Buckridge
blogger, filmmaker, coach
- Phone
- (286) 700-6581
Jamar Fisher
futon advocate, inventor 🟧
- Phone
- (435) 972-3836
Janice Jacobi
streamer, founder
- Phone
- (394) 426-0561
Krystal Bradtke
typewriter lover, developer 🇪🇬
- Phone
- (641) 841-6045
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/people?limit=25"const res = await fetch(
"https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = await res.json();import type { People, ListEnvelope } from "https://example-data.com/types/people.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/people?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<People>;import requests
res = requests.get(
"https://example-data.com/api/v1/people",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 97,
"fullName": "Orpha Prohaska-Padberg",
"firstName": "Orpha",
"lastName": "Prohaska-Padberg",
"email": "orpha.prohaskapadberg-97@example.com",
"phone": "(393) 381-1603",
"occupation": "Direct Metrics Officer",
"city": "North Destin",
"countryAlpha2": "NZ",
"bio": "ostrich advocate, author 🤜🏼",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-97",
"createdAt": "2024-01-05T01:59:36.970Z"
},
{
"id": 98,
"fullName": "Merle Cassin",
"firstName": "Merle",
"lastName": "Cassin",
"email": "merle.cassin-98@example.com",
"phone": "(586) 752-8808",
"occupation": "Human Branding Manager",
"city": "North Wilburncester",
"countryAlpha2": "NO",
"bio": "model",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-98",
"createdAt": "2022-10-23T19:44:28.964Z"
},
{
"id": 99,
"fullName": "Verlie Buckridge",
"firstName": "Verlie",
"lastName": "Buckridge",
"email": "verlie.buckridge-99@example.com",
"phone": "(286) 700-6581",
"occupation": "Customer Accounts Architect",
"city": "Findlay",
"countryAlpha2": "TR",
"bio": "blogger, filmmaker, coach",
"avatarUrl": "https://api.dicebear.com/9.x/avataaars/svg?seed=person-99",
"createdAt": "2024-08-09T09:35:08.473Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/people?page=5",
"next": "/api/v1/people?page=6",
"prev": "/api/v1/people?page=4"
}
}