example-data.com

pet-breeds / #69

Ball Python

reptile · West Africa

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/pet-breeds/69"
)
pet_breed = res.json()
{
  "id": 69,
  "name": "Ball Python",
  "slug": "ball-python",
  "species": "reptile",
  "origin": "West Africa",
  "temperament": [
    "Docile",
    "Shy",
    "Calm"
  ],
  "lifeExpectancyYears": 30,
  "isHypoallergenic": false,
  "createdAt": "2025-11-23T23:11:05.056Z"
}
Draftbit