Welcome to the public API for Kitty Posting. Below are all available endpoints:
GET /api/get_kittyReturns a random kitty image URL.
{
"image_url": "https://api.kittyposting.com/kittyimages/abc123.jpg"
}
GET /api/get_cat_countReturns the total number of kitty images stored.
{
"count": 1234
}
GET /api/image/<filename>Returns the actual image file. Blocks all .json files.
Example: /api/imagefile/abc123.jpg
GET /api/image_data/<filename>Returns metadata associated with an image (tags, hashes, etc).
Example: /api/image_data/abc123.jpg
{
"phash": "...",
"sha256": "...",
"suggested_tags": "gray, sleeping, cute",
"created_date": "...",
...
}
💌 For help or questions, email [email protected]