Netherland Dwarf
rabbit · Netherlands
curl -sS \
"https://example-data.com/api/v1/pet-breeds/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/pet-breeds/52"
);
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/52"
);
const petBreed = (await res.json()) as PetBreed;import requests
res = requests.get(
"https://example-data.com/api/v1/pet-breeds/52"
)
pet_breed = res.json() {
"id": 52,
"name": "Netherland Dwarf",
"slug": "netherland-dwarf",
"species": "rabbit",
"origin": "Netherlands",
"temperament": [
"Energetic",
"Curious",
"Skittish"
],
"lifeExpectancyYears": 10,
"isHypoallergenic": false,
"createdAt": "2026-02-24T19:17:09.560Z"
}