example-data.com

pet-breeds / #55

Lionhead

rabbit · Belgium

Component variants

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

const res = await fetch(
  "https://example-data.com/api/v1/pet-breeds/55"
);
const petBreed = (await res.json()) as PetBreed;
import requests

res = requests.get(
    "https://example-data.com/api/v1/pet-breeds/55"
)
pet_breed = res.json()
{
  "id": 55,
  "name": "Lionhead",
  "slug": "lionhead",
  "species": "rabbit",
  "origin": "Belgium",
  "temperament": [
    "Friendly",
    "Playful",
    "Affectionate"
  ],
  "lifeExpectancyYears": 9,
  "isHypoallergenic": false,
  "createdAt": "2025-10-29T14:57:29.488Z"
}
Draftbit