Nash
- ownerUserId
-
Rosella Homenick @rosella.homenick
- name
- Nash
- species
- bird
- breedId
- Cockatiel
- gender
- unknown
- birthDate
- 2015-08-24
- weightKg
- 0.29
- color
- White
- imageUrl
- https://picsum.photos/seed/pet-20/600/600
- createdAt
- updatedAt
Overview
pets / #20
Request
curl example
curl -sS \ "https://example-data.com/api/v1/pets/20" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/pets/20" ); const pet = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/pets.d.ts https://example-data.com/types/pets.d.ts
import type { Pet } from "./types/pets";
const res = await fetch(
"https://example-data.com/api/v1/pets/20"
);
const pet = (await res.json()) as Pet; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/pets/20"
)
pet = res.json() Response
{
"id": 20,
"ownerUserId": 27,
"name": "Nash",
"species": "bird",
"breedId": 57,
"gender": "unknown",
"birthDate": "2015-08-24",
"weightKg": 0.29,
"color": "White",
"imageUrl": "https://picsum.photos/seed/pet-20/600/600",
"createdAt": "2022-05-09T10:45:16.638Z",
"updatedAt": "2023-11-14T10:29:25.331Z"
}