example-data.com

pet-breeds / #73

Ball Frog

other · South America

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/pet-breeds/73"
)
pet_breed = res.json()
{
  "id": 73,
  "name": "Ball Frog",
  "slug": "ball-frog",
  "species": "other",
  "origin": "South America",
  "temperament": [
    "Calm",
    "Nocturnal",
    "Quiet"
  ],
  "lifeExpectancyYears": 5,
  "isHypoallergenic": false,
  "createdAt": "2021-11-27T07:26:38.980Z"
}
Draftbit