Search
Full-text food product search across 3M+ products.
GET /v1/searchRequest
curl "https://api.c0r.ai/v1/search?q=chicken&limit=10&lang=en" \
-H "X-API-Key: fdb_your_key"Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
q | string | yes | Search query (min 2 chars) |
limit | integer | no | Results per page (default 10, max 50) |
lang | string | no | Language filter: en, ru, ar |
source | string | no | Filter: curated, off |
Response
{
"results": [
{
"id": "c_abc123",
"name": "Chicken breast, raw",
"barcode": null,
"brands": null,
"nutrition": {
"calories": 165,
"proteins": 31.0,
"fats": 3.6,
"carbs": 0.0
},
"food_group": "Meat & Poultry",
"image_url": null,
"source": "curated",
"verified": true
}
],
"total": 42,
"query": "chicken",
"lang": "en"
}