example-data.com

pets / #6

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

Component variants

Medium

Emie

#6

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

res = requests.get(
    "https://example-data.com/api/v1/pets/6"
)
pet = res.json()
{
  "id": 6,
  "ownerUserId": 5,
  "name": "Emie",
  "species": "rabbit",
  "breedId": null,
  "gender": "unknown",
  "birthDate": null,
  "weightKg": 4.5,
  "color": "Black",
  "imageUrl": "https://picsum.photos/seed/pet-6/600/600",
  "createdAt": "2012-06-10T01:25:47.507Z",
  "updatedAt": "2019-06-03T16:44:42.107Z"
}
Draftbit