example-data.com

pets

pets

Page 5 of 9.

ownerUserId
112
name
Lurline
species
dog
breedId
7
gender
female
birthDate
2019-01-26
weightKg
42.7
color
Brown
imageUrl
https://picsum.photos/seed/pet-97/600/600
createdAt
updatedAt
ownerUserId
113
name
Keanu
species
dog
breedId
20
gender
female
birthDate
weightKg
27.9
color
Tan
imageUrl
https://picsum.photos/seed/pet-98/600/600
createdAt
updatedAt
ownerUserId
114
name
Buddy
species
bird
breedId
60
gender
male
birthDate
2013-03-24
weightKg
0.34
color
Yellow
imageUrl
https://picsum.photos/seed/pet-99/600/600
createdAt
updatedAt
ownerUserId
115
name
Markus
species
dog
breedId
gender
female
birthDate
2024-03-13
weightKg
31.9
color
Spotted
imageUrl
https://picsum.photos/seed/pet-100/600/600
createdAt
updatedAt
ownerUserId
115
name
Liliana
species
dog
breedId
6
gender
unknown
birthDate
2015-03-27
weightKg
69.3
color
Tan
imageUrl
https://picsum.photos/seed/pet-101/600/600
createdAt
updatedAt
ownerUserId
116
name
Nicole
species
cat
breedId
31
gender
unknown
birthDate
2013-03-02
weightKg
2.6
color
Tuxedo
imageUrl
https://picsum.photos/seed/pet-102/600/600
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/pets?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/pets?limit=25"
);
const { data, meta } = await res.json();
import type { Pet, ListEnvelope } from "https://example-data.com/types/pets.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/pets?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Pet>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/pets",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 97,
      "ownerUserId": 112,
      "name": "Lurline",
      "species": "dog",
      "breedId": 7,
      "gender": "female",
      "birthDate": "2019-01-26",
      "weightKg": 42.7,
      "color": "Brown",
      "imageUrl": "https://picsum.photos/seed/pet-97/600/600",
      "createdAt": "2012-05-11T14:08:23.528Z",
      "updatedAt": "2023-09-01T13:38:11.449Z"
    },
    {
      "id": 98,
      "ownerUserId": 113,
      "name": "Keanu",
      "species": "dog",
      "breedId": 20,
      "gender": "female",
      "birthDate": null,
      "weightKg": 27.9,
      "color": "Tan",
      "imageUrl": "https://picsum.photos/seed/pet-98/600/600",
      "createdAt": "2019-04-23T13:27:58.637Z",
      "updatedAt": "2020-03-29T04:33:19.373Z"
    },
    {
      "id": 99,
      "ownerUserId": 114,
      "name": "Buddy",
      "species": "bird",
      "breedId": 60,
      "gender": "male",
      "birthDate": "2013-03-24",
      "weightKg": 0.34,
      "color": "Yellow",
      "imageUrl": "https://picsum.photos/seed/pet-99/600/600",
      "createdAt": "2025-04-24T11:26:00.695Z",
      "updatedAt": "2026-01-19T04:33:29.360Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/pets?page=5",
    "next": "/api/v1/pets?page=6",
    "prev": "/api/v1/pets?page=4"
  }
}
Draftbit