Free overview of food-intel capabilities - try before you buy
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://food-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Look up a food product by barcode (EAN/UPC)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"barcode": {
"type": "string",
"description": "Product barcode (EAN-13, UPC-A, etc.)"
}
},
"required": [
"barcode"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://food-intel-production.up.railway.app/entrypoints/barcode/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"barcode": "<Product barcode (EAN-13, UPC-A, etc.)>"
}
}
'
Search products by name or keyword
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search term (product name, ingredient, etc.)"
},
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://food-intel-production.up.railway.app/entrypoints/search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Search term (product name, ingredient, etc.)>",
"limit": 1
}
}
'
Get products in a food category
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Category slug (e.g., \"chocolates\", \"beverages\", \"cereals\")"
},
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"category",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://food-intel-production.up.railway.app/entrypoints/category/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"category": "<Category slug (e.g., \"chocolates\", \"beverages\", \"cereals\")>",
"limit": 1
}
}
'
Get products from a specific brand
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"brand": {
"type": "string",
"description": "Brand name (e.g., \"Coca-Cola\", \"Nestle\", \"Kelloggs\")"
},
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"brand",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://food-intel-production.up.railway.app/entrypoints/brand/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"brand": "<Brand name (e.g., \"Coca-Cola\", \"Nestle\", \"Kelloggs\")>",
"limit": 1
}
}
'
Detailed nutrition analysis for a product with health scores
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"barcode": {
"type": "string",
"description": "Product barcode"
}
},
"required": [
"barcode"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://food-intel-production.up.railway.app/entrypoints/nutrition/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"barcode": "<Product barcode>"
}
}
'