Holland Lop
rabbit · Netherlands
curl -sS \
"https://example-data.com/api/v1/pet-breeds/51" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/pet-breeds/51"
);
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/51"
);
const petBreed = (await res.json()) as PetBreed;import requests
res = requests.get(
"https://example-data.com/api/v1/pet-breeds/51"
)
pet_breed = res.json() {
"id": 51,
"name": "Holland Lop",
"slug": "holland-lop",
"species": "rabbit",
"origin": "Netherlands",
"temperament": [
"Friendly",
"Calm",
"Sociable"
],
"lifeExpectancyYears": 9,
"isHypoallergenic": false,
"createdAt": "2025-01-15T07:26:12.765Z"
}