example-data.com

pets

pets

Page 2 of 9.

ownerUserId
33
name
Juston
species
bird
breedId
gender
unknown
birthDate
2017-08-19
weightKg
0.57
color
Multi-color
imageUrl
https://picsum.photos/seed/pet-25/600/600
createdAt
updatedAt
ownerUserId
34
name
Wilbert
species
bird
breedId
60
gender
unknown
birthDate
2022-02-07
weightKg
0.6
color
Red
imageUrl
https://picsum.photos/seed/pet-26/600/600
createdAt
updatedAt
ownerUserId
36
name
Dannie
species
other
breedId
gender
male
birthDate
2014-04-27
weightKg
3.53
color
Gray
imageUrl
https://picsum.photos/seed/pet-27/600/600
createdAt
updatedAt
ownerUserId
36
name
Johnny
species
cat
breedId
44
gender
male
birthDate
2020-08-22
weightKg
2.4
color
Tuxedo
imageUrl
https://picsum.photos/seed/pet-28/600/600
createdAt
updatedAt
ownerUserId
37
name
Yasmin
species
bird
breedId
61
gender
unknown
birthDate
2020-05-28
weightKg
0.57
color
White
imageUrl
https://picsum.photos/seed/pet-29/600/600
createdAt
updatedAt
ownerUserId
40
name
Ressie
species
fish
breedId
68
gender
unknown
birthDate
2015-03-14
weightKg
0.46
color
Silver
imageUrl
https://picsum.photos/seed/pet-30/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": 25,
      "ownerUserId": 33,
      "name": "Juston",
      "species": "bird",
      "breedId": null,
      "gender": "unknown",
      "birthDate": "2017-08-19",
      "weightKg": 0.57,
      "color": "Multi-color",
      "imageUrl": "https://picsum.photos/seed/pet-25/600/600",
      "createdAt": "2011-08-07T23:19:58.889Z",
      "updatedAt": "2024-04-11T23:52:58.974Z"
    },
    {
      "id": 26,
      "ownerUserId": 34,
      "name": "Wilbert",
      "species": "bird",
      "breedId": 60,
      "gender": "unknown",
      "birthDate": "2022-02-07",
      "weightKg": 0.6,
      "color": "Red",
      "imageUrl": "https://picsum.photos/seed/pet-26/600/600",
      "createdAt": "2018-08-28T05:55:30.919Z",
      "updatedAt": "2023-10-23T19:58:54.086Z"
    },
    {
      "id": 27,
      "ownerUserId": 36,
      "name": "Dannie",
      "species": "other",
      "breedId": null,
      "gender": "male",
      "birthDate": "2014-04-27",
      "weightKg": 3.53,
      "color": "Gray",
      "imageUrl": "https://picsum.photos/seed/pet-27/600/600",
      "createdAt": "2020-06-10T09:56:35.059Z",
      "updatedAt": "2026-02-03T07:16:14.367Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/pets?page=2",
    "next": "/api/v1/pets?page=3",
    "prev": "/api/v1/pets?page=1"
  }
}
Draftbit