example-data.com

pets / #20

ownerUserId
27
name
Nash
species
bird
breedId
57
gender
unknown
birthDate
2015-08-24
weightKg
0.29
color
White
imageUrl
https://picsum.photos/seed/pet-20/600/600
createdAt
updatedAt

Component variants

curl -sS \
  "https://example-data.com/api/v1/pets/20" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/pets/20"
);
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/20"
);
const pet = (await res.json()) as Pet;
import requests

res = requests.get(
    "https://example-data.com/api/v1/pets/20"
)
pet = res.json()
{
  "id": 20,
  "ownerUserId": 27,
  "name": "Nash",
  "species": "bird",
  "breedId": 57,
  "gender": "unknown",
  "birthDate": "2015-08-24",
  "weightKg": 0.29,
  "color": "White",
  "imageUrl": "https://picsum.photos/seed/pet-20/600/600",
  "createdAt": "2022-05-09T10:45:16.638Z",
  "updatedAt": "2023-11-14T10:29:25.331Z"
}
Draftbit