example-data.com

pets

pets

Browse 200 pets records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

ownerUserId
1
name
Juwan
species
reptile
breedId
71
gender
unknown
birthDate
2018-01-10
weightKg
5.1
color
Yellow
imageUrl
https://picsum.photos/seed/pet-1/600/600
createdAt
updatedAt
ownerUserId
3
name
Erik
species
dog
breedId
15
gender
male
birthDate
weightKg
61.1
color
Spotted
imageUrl
https://picsum.photos/seed/pet-2/600/600
createdAt
updatedAt
ownerUserId
3
name
Isidro
species
dog
breedId
20
gender
male
birthDate
2017-03-09
weightKg
43.2
color
Tan
imageUrl
https://picsum.photos/seed/pet-3/600/600
createdAt
updatedAt
ownerUserId
4
name
Joseph
species
cat
breedId
gender
unknown
birthDate
2022-07-10
weightKg
6
color
Tuxedo
imageUrl
https://picsum.photos/seed/pet-4/600/600
createdAt
updatedAt
ownerUserId
4
name
Christy
species
dog
breedId
gender
unknown
birthDate
2013-09-22
weightKg
66.4
color
Golden
imageUrl
https://picsum.photos/seed/pet-5/600/600
createdAt
updatedAt
ownerUserId
5
name
Emie
species
rabbit
breedId
gender
unknown
birthDate
weightKg
4.5
color
Black
imageUrl
https://picsum.photos/seed/pet-6/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": 1,
      "ownerUserId": 1,
      "name": "Juwan",
      "species": "reptile",
      "breedId": 71,
      "gender": "unknown",
      "birthDate": "2018-01-10",
      "weightKg": 5.1,
      "color": "Yellow",
      "imageUrl": "https://picsum.photos/seed/pet-1/600/600",
      "createdAt": "2014-07-16T00:37:39.435Z",
      "updatedAt": "2021-04-21T04:08:36.863Z"
    },
    {
      "id": 2,
      "ownerUserId": 3,
      "name": "Erik",
      "species": "dog",
      "breedId": 15,
      "gender": "male",
      "birthDate": null,
      "weightKg": 61.1,
      "color": "Spotted",
      "imageUrl": "https://picsum.photos/seed/pet-2/600/600",
      "createdAt": "2022-08-18T21:43:32.000Z",
      "updatedAt": "2022-09-02T00:49:05.092Z"
    },
    {
      "id": 3,
      "ownerUserId": 3,
      "name": "Isidro",
      "species": "dog",
      "breedId": 20,
      "gender": "male",
      "birthDate": "2017-03-09",
      "weightKg": 43.2,
      "color": "Tan",
      "imageUrl": "https://picsum.photos/seed/pet-3/600/600",
      "createdAt": "2025-11-08T04:56:44.598Z",
      "updatedAt": "2026-04-18T23:59:34.579Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 200,
    "totalPages": 8
  },
  "links": {
    "self": "/api/v1/pets?page=1",
    "first": "/api/v1/pets?page=1",
    "last": "/api/v1/pets?page=8",
    "next": "/api/v1/pets?page=2",
    "prev": null
  }
}

View full response →

Draftbit