豆知識の操作
ランダムな猫の豆知識、または特定の品種の豆知識を取得します。
ランダムな豆知識
curl -H "x-api-key: YOUR-API-KEY" "https://api.thecatapi.com/v1/facts?limit=1"
[
{
"id": "TY0wQvvPlG",
"title": "High Intelligence",
"fact": "Abyssinians are considered one of the most intelligent cat breeds, easily trained and quick to learn tricks and commands.",
"slug": "high-intelligence",
"category": null,
"species_id": "1"
}
]
品種の豆知識
品種IDを指定すると、その品種の豆知識だけを取得できます。limit と offset でページングし、lang(en、de、es、fr、it)で翻訳します。品種 abys は Abyssinian です。
curl -H "x-api-key: YOUR-API-KEY" "https://api.thecatapi.com/v1/facts/breed/abys?limit=2&offset=0&lang=en"
翻訳された豆知識
curl -H "x-api-key: YOUR-API-KEY" "https://api.thecatapi.com/v1/facts/breed/abys?limit=1&lang=it"
ページング対応のレスポンスには pagination-count、pagination-page、pagination-limit ヘッダーが含まれます。