example-data.com

pets / #110

ownerUserId
121
name
Alford
species
other
breedId
80
gender
female
birthDate
2022-11-15
weightKg
1.07
color
White
imageUrl
https://picsum.photos/seed/pet-110/600/600
createdAt
updatedAt

Component variants

curl -sS \
  "https://example-data.com/api/v1/pets/110" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/pets/110"
);
const pet = await res.json();
import type { Pet } from "https://example-data.com/types/pets.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/pets/110"
);
const pet = (await res.json()) as Pet;
import requests

res = requests.get(
    "https://example-data.com/api/v1/pets/110"
)
pet = res.json()
{
  "id": 110,
  "ownerUserId": 121,
  "name": "Alford",
  "species": "other",
  "breedId": 80,
  "gender": "female",
  "birthDate": "2022-11-15",
  "weightKg": 1.07,
  "color": "White",
  "imageUrl": "https://picsum.photos/seed/pet-110/600/600",
  "createdAt": "2026-01-22T03:51:58.564Z",
  "updatedAt": "2026-05-11T20:44:20.105Z"
}
Draftbit