Fast autocomplete search, detailed nutrition facts, simple REST API. Power your health app with accurate food data.
10,000 free credits on signup • No credit card required
$ curl "https://api.foodfactsapi.com/api/v1/search?q=chicken breast" \
-H "Authorization: Bearer ff_your_api_key"
{
"query": "chicken breast",
"count": 10,
"results": [
{
"id": "abc123",
"name": "Chicken Breast, Grilled",
"brand": "Generic",
"calories": 165,
"protein": 31,
"carbs": 0,
"fat": 3.6
}
]
}Sub-50ms autocomplete powered by FTS5 trigram search. Perfect for real-time search UX.
600,000+ foods with calories, macros, vitamins, minerals, ingredients, and allergens.
RESTful JSON API. One endpoint for search, one for details. Works with any language.
Pay only for what you use. $1 = 1,000 credits.
Sign up and create an API key from your dashboard.
GET /api/v1/search?q=banana&limit=10 Authorization: Bearer ff_your_api_key
GET /api/v1/foods/abc123 Authorization: Bearer ff_your_api_key