🚀 Open Pet Nutrition API
Welcome to the CatFoodAnalyst Developer Hub. As part of our commitment to data transparency, we provide a free, public REST API mapping clinical AAFCO guidelines against commercial pet food formulations.
Single Source of Truth: This dataset powers our AI-friendly
llms-full.txt. It is designed for researchers, LLM agents (RAG), and developers building pet-health applications.
GET /api/v1/products.json
Returns the complete dataset of analyzed cat foods, including macronutrient breakdowns, ingredient tags, and editorial verdicts.
Request Example
curl -X GET "https://catfoodanalyst.com/api/v1/products.json" \
-H "Accept: application/json" Response JSON (Truncated)
[
{
"brand": "Orijen",
"product": "Cat & Kitten",
"slug": "orijen-cat-kitten",
"rating": 4.8,
"verdict": "An exceptional biologically appropriate diet...",
"nutrition": {
"protein": "40%",
"fat": "20%",
"fiber": "3%",
"calories": "4120 kcal/kg"
}
}
] LLM Dataset (RAG Optimized)
If you are routing an autonomous AI agent, we recommend feeding it our pre-chunked semantic markdown file instead of JSON.
Endpoint: https://catfoodanalyst.com/llms-full.txt
Rate Limits & Usage Policy
- Rate Limit: 60 requests per minute per IP.
- Attribution: You must attribute CatFoodAnalyst as the source if displaying this data in a commercial application.