Data source: In-memory curated collection
https://context.gnist.ai/rest/cat-breeds/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (5)
get_cat_breedGet detailed information about a specific cat breed by its ID.
Returns breed characteristics including size, weight, temperament, coat type, and compatibility info.
| Parameter | Type | Required | Description |
|---|---|---|---|
breed_id | string | required | Breed ID slug (e.g. 'persian', 'maine-coon', 'russian-blue'). |
{
"breed_id": "example"
}list_cat_breedsList cat breeds with optional filters.
Filters can be combined (AND logic). Returns all breeds if no filters are specified.
| Parameter | Type | Required | Description |
|---|---|---|---|
origin | any | optional | Filter by country of origin (e.g. 'United States', 'Thailand'). Omit for all origins. |
size | any | optional | Filter by size: Small, Medium, or Large. Omit for all sizes. |
coat_length | any | optional | Filter by coat length: Short, Medium, Long, or Hairless. Omit for all types. |
{
"query": "example"
}search_cat_breedsSearch for cat breeds by keyword.
Searches across breed name, origin, temperament traits, coat length, and description. Case-insensitive.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search keyword — matches breed name, origin, temperament, coat type, or description. |
max_results | any | optional | Maximum number of results (default: 20, max: 100). |
{
"query": "example"
}get_random_cat_breedGet a random cat breed.
Returns full details for a randomly selected breed from the database.
{
"query": "example"
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
curl -X POST "https://context.gnist.ai/rest/cat-breeds/get_cat_breed" \
-H "Content-Type: application/json" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"breed_id": "example"}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/rest/cat-breeds/get_cat_breed",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
json={
"breed_id": "example"
},
)
print(resp.json())