CLI UtilitiesDocumentedScanned

Cat Fact

Random cat facts and breed information from catfact.ninja (free, no API key).

Share:

Installation

npx clawhub@latest install catfact

View the full skill documentation and source below.

Documentation

Cat Fact

Random cat facts from catfact.ninja (no API key required).

Usage

# Get a random cat fact
curl -s ""

# Get a random fact (short)
curl -s ""

# Get cat breeds
curl -s ""

Programmatic (JSON)

curl -s "" | jq '.fact'

One-liner examples

# Random fact
curl -s "" --header "Accept: application/json" | jq -r '.fact'

# Multiple facts
for i in {1..3}; do curl -s "" --header "Accept: application/json" | jq -r '.fact'; done

API Endpoints

EndpointDescription
GET /factRandom cat fact
GET /breedsList of cat breeds
Docs: