example-data.com

pet-breeds / #61

Conure

bird · South America

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/pet-breeds/61"
)
pet_breed = res.json()
{
  "id": 61,
  "name": "Conure",
  "slug": "conure",
  "species": "bird",
  "origin": "South America",
  "temperament": [
    "Playful",
    "Affectionate",
    "Vocal"
  ],
  "lifeExpectancyYears": 20,
  "isHypoallergenic": false,
  "createdAt": "2021-12-12T04:55:54.839Z"
}
Draftbit