get_all_products
vinisfoods.comRetrieves the complete Vini's Foods catalog from https://vinisfoods.com in one response. Each product includes catalog metadata, tags, descriptions, variants with size, price and availability, and image details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_all_products?
Retrieves the complete Vini's Foods catalog from https://vinisfoods.com in one response. Each product includes catalog metadata, tags, descriptions, variants with size, price and availability, and image details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"count": 0,
"currency": "<string>",
"products": [
{
"id": 0,
"url": "<string>",
"tags": [
"<string>"
],
"title": "<string>",
"handle": "<string>",
"images": [
{
"id": 0,
"src": "<string>",
"width": 0,
"height": 0,
"position": 0,
"created_at": "<string>",
"product_id": 0,
"updated_at": "<string>"
}
],
"vendor": "<string>",
"options": [
{
"name": "<string>",
"values": [
"<string>"
],
"position": 0
}
],
"variants": [
{
"id": 0,
"size": "<string>",
"grams": 0,
"price": "<string>",
"title": "<string>",
"option1": "<string>",
"taxable": true,
"position": 0,
"available": true,
"created_at": "<string>",
"product_id": 0,
"updated_at": "<string>",
"compare_at_price": "<string>",
"requires_shipping": true
}
],
"image_url": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"description": "<string>",
"product_type": "<string>",
"published_at": "<string>"
}
],
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8b5c3d7e-efb3-49d7-9a83-699671bcccd0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8b5c3d7e-efb3-49d7-9a83-699671bcccd0",
"variables": {}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8b5c3d7e-efb3-49d7-9a83-699671bcccd0") — the "get_all_products" function, which retrieves the complete Vini's Foods catalog from https://vinisfoods.com in one response. Each product includes catalog metadata, tags, descriptions, variants with size, price and availability, and image details.. It takes no parameters. Return the result as structured JSON.