Quickstart

Make your first API request in under 2 minutes.

1. Get your API key

Sign up at developer.c0r.ai/signup. You will receive a key starting with fdb_.

2. Search for a food product

curl "https://api.c0r.ai/v1/search?q=apple" \
  -H "X-API-Key: fdb_your_key"

3. Look up by barcode

curl "https://api.c0r.ai/v1/barcode/4600682500018" \
  -H "X-API-Key: fdb_your_key"

4. Analyze a dish with AI

curl -X POST "https://api.c0r.ai/v1/analyze" \
  -H "X-API-Key: fdb_your_key" \
  -H "Content-Type: application/json" \
  -d '{"text": "200g salmon with 150g brown rice"}'

Next Steps