example-data.com

pets

pets

Page 3 of 9.

ownerUserId
56
name
Mustafa
species
dog
breedId
1
gender
unknown
birthDate
2024-05-08
weightKg
8
color
Brindle
imageUrl
https://picsum.photos/seed/pet-49/600/600
createdAt
updatedAt
ownerUserId
57
name
Muriel
species
dog
breedId
13
gender
female
birthDate
2019-01-05
weightKg
14.9
color
Brown
imageUrl
https://picsum.photos/seed/pet-50/600/600
createdAt
updatedAt
ownerUserId
57
name
Arnoldo
species
dog
breedId
19
gender
male
birthDate
weightKg
18.1
color
White
imageUrl
https://picsum.photos/seed/pet-51/600/600
createdAt
updatedAt
ownerUserId
60
name
Elyse
species
cat
breedId
38
gender
male
birthDate
weightKg
6.5
color
Gray
imageUrl
https://picsum.photos/seed/pet-52/600/600
createdAt
updatedAt
ownerUserId
61
name
Hosea
species
dog
breedId
gender
female
birthDate
2017-05-13
weightKg
65.7
color
Spotted
imageUrl
https://picsum.photos/seed/pet-53/600/600
createdAt
updatedAt
ownerUserId
61
name
Name
species
reptile
breedId
gender
unknown
birthDate
weightKg
8.8
color
Green
imageUrl
https://picsum.photos/seed/pet-54/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": 49,
      "ownerUserId": 56,
      "name": "Mustafa",
      "species": "dog",
      "breedId": 1,
      "gender": "unknown",
      "birthDate": "2024-05-08",
      "weightKg": 8,
      "color": "Brindle",
      "imageUrl": "https://picsum.photos/seed/pet-49/600/600",
      "createdAt": "2022-12-02T01:10:04.321Z",
      "updatedAt": "2025-08-27T05:30:11.542Z"
    },
    {
      "id": 50,
      "ownerUserId": 57,
      "name": "Muriel",
      "species": "dog",
      "breedId": 13,
      "gender": "female",
      "birthDate": "2019-01-05",
      "weightKg": 14.9,
      "color": "Brown",
      "imageUrl": "https://picsum.photos/seed/pet-50/600/600",
      "createdAt": "2026-05-21T03:20:42.926Z",
      "updatedAt": "2026-05-21T22:38:07.059Z"
    },
    {
      "id": 51,
      "ownerUserId": 57,
      "name": "Arnoldo",
      "species": "dog",
      "breedId": 19,
      "gender": "male",
      "birthDate": null,
      "weightKg": 18.1,
      "color": "White",
      "imageUrl": "https://picsum.photos/seed/pet-51/600/600",
      "createdAt": "2011-10-10T03:43:54.016Z",
      "updatedAt": "2019-10-20T22:39:45.524Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/pets?page=3",
    "next": "/api/v1/pets?page=4",
    "prev": "/api/v1/pets?page=2"
  }
}
Draftbit