Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHubOpen Standards
Resources
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / E Commerce / Nutribot - Zapier API
Nutribot - Zapier API logo

Nutribot - Zapier API

★ Only Publicly Available OpenAPI DocumentE CommerceOrder ManagementapiKey4 EndpointsREST

For Agents

Pull new Nutribot customers and orders for use as Zapier-style triggers, with bearer-token authentication and a single account-info call.

Use for: I need to authenticate with my Nutribot credentials and get an access token, Retrieve the Nutribot account profile linked to my API token, List all new Nutribot customers since my last poll, Get the latest orders placed in my Nutribot store

Not supported: Does not handle product catalogue management, payments, or shipping logistics - use for surfacing new Nutribot customer and order events only.

The Nutribot Zapier API exposes a small set of endpoints designed to feed customer and order events from a Nutribot meal-plan storefront into Zapier and other automation tools. It supports authenticating with a bearer token, retrieving the merchant account profile, and pulling new customer and new order records suitable for use as Zapier triggers. The surface is intentionally narrow - four operations under /admin/api - making it well suited to syncing fresh signups and orders into a CRM, email tool, or warehouse without a heavy integration build.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Nutribot - Zapier API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Nutribot - Zapier API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fnutribot.io%2Fnutribot" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fnutribot.io%2Fnutribot" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Nutribot - Zapier API.

Authenticate to Nutribot using email and password to obtain a bearer access token

Retrieve the authenticated merchant account profile for downstream personalisation

Fetch newly created customers as a Zapier trigger feed

Fetch newly placed orders as a Zapier trigger feed

Bridge a Nutribot meal-plan store into CRM, email, or analytics workflows without bespoke code

Use Cases

Patterns agents use Nutribot - Zapier API for, with concrete tasks.

★ Sync New Nutribot Customers Into a CRM

Mirror every new Nutribot signup into a downstream CRM such as HubSpot or Pipedrive by polling the new-customers endpoint and forwarding records as contacts. The API returns customer records suitable for direct mapping into CRM contact fields, so a small worker can keep both systems aligned without manual exports. Typical setup time is under an hour once a bearer token is in hand.

Authenticate with Nutribot, call GET /admin/api/mc/zapier/new-customers, and create a HubSpot contact for each returned customer record.

Trigger Order Notifications and Fulfilment

Use the new-orders endpoint as a poll-based trigger to notify operations staff or kick off downstream fulfilment tasks whenever a Nutribot order is placed. Each order includes the metadata needed to alert teams in Slack, write a row to a sheet, or hand off to a shipping system. This avoids the cost of building a dedicated webhook receiver while still giving near-real-time visibility into sales.

Poll GET /admin/api/mc/zapier/new-orders every five minutes and post a summary of any new orders to a Slack channel.

Agent-Driven Nutribot Reporting

Let an AI agent answer ad-hoc questions about Nutribot activity - for example, how many new customers signed up this week or which orders came in overnight - by chaining the account, new-customers, and new-orders endpoints behind a single intent. Through Jentic, the agent searches by intent and gets only the operations it needs, with credentials handled by the platform.

Search Jentic for 'list new Nutribot orders', load the operation, and return a count of orders placed in the last 24 hours.

Key Endpoints

4 endpoints — the nutribot zapier api exposes a small set of endpoints designed to feed customer and order events from a nutribot meal-plan storefront into zapier and other automation tools.

METHOD

PATH

DESCRIPTION

POST

/admin/oauth/token

Obtain a bearer access token from email and password

GET

/admin/api/account

Retrieve the authenticated merchant account

GET

/admin/api/mc/zapier/new-customers

List new customers for Zapier triggers

GET

/admin/api/mc/zapier/new-orders

List new orders for Zapier triggers

POST

/admin/oauth/token

Obtain a bearer access token from email and password

GET

/admin/api/account

Retrieve the authenticated merchant account

GET

/admin/api/mc/zapier/new-customers

List new customers for Zapier triggers

GET

/admin/api/mc/zapier/new-orders

List new orders for Zapier triggers

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Nutribot Zapier API by hand means running the /admin/oauth/token exchange, managing the token, and handling the request plumbing against api.nutribot.io yourself. Through Jentic you install once, import Nutribot from the API Directory, store the credential once, and your agent calls it.

Permission scoping

Permission scoping

The Nutribot event feeds carry no resource id in the path, so scope the agent to the operations it needs: you can allow surfacing new customers and new orders plus the account lookup and leave everything else out. You choose the operations it may call, so it only reaches the endpoints you list.

Credential management

Credential isolation

Your Nutribot bearer token and underlying email and password are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'list new Nutribot orders' or 'get Nutribot account', and Jentic returns the matching Nutribot operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Shopify Admin API

→

Full-featured commerce platform API with native webhooks for orders and customers, versus Nutribot's narrow Zapier feed.

Choose Shopify when the merchant runs on Shopify or needs richer order, product, and fulfilment endpoints than Nutribot's four operations.

Complementary

HubSpot CRM Contacts API

→

Pair with Nutribot to land new customers as HubSpot contacts and trigger downstream marketing.

Use after fetching Nutribot new customers when the goal is to create or update CRM contacts.

Complementary

Mailchimp Marketing API

→

Push Nutribot customers into Mailchimp audiences for transactional and marketing email.

Use when the goal is to enrol new Nutribot customers into a welcome sequence.

FAQs

Specific to using Nutribot - Zapier API through Jentic.

What authentication does the Nutribot Zapier API use?

The API uses a bearer access token sent in the Authorization header. You exchange merchant email and password at POST /admin/oauth/token to receive the token, then attach it to every subsequent call. Through Jentic, the bearer token is held in the encrypted vault so the agent never sees the raw secret.

Can I receive real-time push notifications from Nutribot?

No - the API exposes Zapier-style polling feeds at /admin/api/mc/zapier/new-customers and /admin/api/mc/zapier/new-orders rather than push webhooks. Schedule a regular poll on the cadence you need and treat each response as the trigger payload.

What are the rate limits for the Nutribot Zapier API?

The OpenAPI spec does not publish explicit rate limits. Treat the polling feeds as low-frequency triggers (for example, every one to five minutes) and back off on any 429 or 5xx response.

How do I list new Nutribot orders through Jentic?

Run pip install jentic, then search for 'list new Nutribot orders'. Jentic returns the GET /admin/api/mc/zapier/new-orders operation with its input schema; load it and execute with your stored bearer credentials. Run it through Jentic One, the self-hosted execution layer, to get an agent API key.

Is the Nutribot Zapier API free?

Access is tied to a Nutribot merchant account; the API itself is included with the Nutribot plan and there is no separate published price list for API calls. Confirm any usage caps with your Nutribot account contact.

Can I limit what my agent is allowed to do with the Nutribot Zapier API?

Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent may use, and the Nutribot feeds carry no resource id in the path, so you scope access at the operation level. You can allow just the ones you need, such as listing new customers at GET /admin/api/mc/zapier/new-customers, listing new orders at GET /admin/api/mc/zapier/new-orders, and the account lookup at GET /admin/api/account, and leave every other endpoint out. The agent only reaches the operations you list, using the bearer token you stored, so it never touches endpoints you did not permit.

GET STARTED

Start building with Nutribot - Zapier API

Explore with Jentic One
View OpenAPI Document