Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the FeedBlitz 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.
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%2Ffeedblitz.com%2Ffeedblitz" | shStep 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%2Ffeedblitz.com%2Ffeedblitz" | sh
jentic register # connects your agent to your Jentic One instanceJentic 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.
What an agent can do with FeedBlitz API.
Read FeedBlitz account information for the authenticated user
List active subscribers across configured lists
Add subscribers from external sources via /subscribers/add
Remove subscribers via /subscribers/remove for unsubscribe automation
List feeds, campaigns, and triggers configured on the account
GET STARTED
Patterns agents use FeedBlitz API for, with concrete tasks.
★ CRM-Driven Subscriber Sync
Marketing teams keep FeedBlitz lists in sync with their CRM. When a contact is created in HubSpot or Salesforce, a backend calls POST /subscribers/add with the email and target list to enrol them in the right newsletter, and POST /subscribers/remove on opt-out. The API key is passed via the query parameter so a server-side job is enough - no front-end SDK required.
On a HubSpot contact-created event, call POST /subscribers/add with the email and FeedBlitz list ID.
Newsletter Audience Reporting
Publishers running multiple newsletters need a unified view of their FeedBlitz audience. GET /subscribers, GET /feeds, and GET /campaigns supply the raw data for a weekly dashboard that shows list size, active campaigns, and feed health without manually exporting CSVs from the FeedBlitz UI.
Pull GET /feeds and GET /subscribers each Sunday and write the totals into the analytics warehouse.
Trigger-Based Welcome Series
Publishers configure FeedBlitz triggers to fire welcome and re-engagement sequences. GET /triggers exposes the configured triggers so a workflow tool can verify that the welcome series is still wired up before launching a campaign that relies on it.
Call GET /triggers and confirm the welcome trigger is present before scheduling the next launch campaign.
Agent-Driven List Hygiene
An AI agent monitoring help-desk and support queues can spot opt-out requests in plain English and use Jentic to call POST /subscribers/remove against FeedBlitz, closing the loop on unsubscribes that would otherwise sit in a ticket queue. The FeedBlitz API key stays in your Jentic One instance.
Use Jentic to search 'remove a feedblitz subscriber' and execute POST /subscribers/remove with the email parsed from the support ticket.
7 endpoints — jentic publishes the only available openapi specification for feedblitz api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/subscribers/add
Add a subscriber to a list
/subscribers/remove
Remove a subscriber from a list
/subscribers
List subscribers
/feeds
List configured feeds
/campaigns
List campaigns
/triggers
List triggers
/subscribers/add
Add a subscriber to a list
/subscribers/remove
Remove a subscriber from a list
/subscribers
List subscribers
/feeds
List configured feeds
/campaigns
List campaigns
/triggers
List triggers
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the FeedBlitz API by hand means appending the key as a query parameter on every call and keeping it out of your own request logs yourself. Through Jentic you install once, import FeedBlitz from the API Directory, store the key once, and your agent calls it.
Permission scoping
FeedBlitz identifies the subscriber and list in the request body rather than the URL path, so limit the agent to the operations it needs, such as adding a subscriber or reading feeds. You choose which operations it may call, so a write like removing a subscriber is included only when you add it.
Credential isolation
Your FeedBlitz API key is stored once, encrypted, by your own Jentic One instance and appended to the request at execution time. It never enters the agent's prompt, logs, or logged URLs.
Intent-based discovery
Agents search Jentic by intent such as 'add a FeedBlitz subscriber', and Jentic returns the matching FeedBlitz endpoint with its input schema so the agent calls the right endpoint without browsing the docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using FeedBlitz API through Jentic.
Why is there no official OpenAPI spec for FeedBlitz API?
FeedBlitz documents its endpoints on the legacy API page but does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call FeedBlitz API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the FeedBlitz API use?
FeedBlitz uses an API key passed as the 'key' query parameter on each request. Through Jentic the key is stored in the vault and Jentic appends it at call time so it is not exposed in agent prompts or logs.
Can I add and remove subscribers programmatically?
Yes. POST /subscribers/add adds a subscriber to a FeedBlitz list and POST /subscribers/remove removes them, supporting standard CRM-to-newsletter automation.
What are the rate limits for the FeedBlitz API?
FeedBlitz does not publish numeric rate limits in this spec; throughput is constrained per account plan. Apply exponential backoff on 429 responses and contact FeedBlitz support if bulk operations need higher throughput.
How do I add a subscriber to FeedBlitz through Jentic?
Run pip install jentic, search 'add a feedblitz subscriber', load POST /subscribers/add, and execute it with the email and list ID to enrol the contact.
Can I list scheduled campaigns?
Yes. GET /campaigns returns campaigns configured on the account, useful for confirming send schedules before launch.
Can I limit what my agent is allowed to do with the FeedBlitz API?
Yes. Because you run Jentic One yourself, you decide exactly which FeedBlitz operations your agent may call, so you can grant read-only access to GET /subscribers, GET /feeds, GET /campaigns, and GET /triggers while withholding writes. Since FeedBlitz identifies the subscriber and list in the request body rather than the URL, a write such as POST /subscribers/remove is available only when you explicitly add it to the agent's allowed operations. Your FeedBlitz API key stays in your own instance and is appended at call time, so the agent never sees it and can only act within the operations you have permitted.
Know of an official OpenAPI document? Contribute it →
For Agents
List subscribers, add and remove them, and inspect feeds, campaigns, and triggers in a FeedBlitz account.
Use for: I need to add a subscriber to a FeedBlitz list, Remove a subscriber from a FeedBlitz list when they unsubscribe in our app, List the subscribers on a specific FeedBlitz feed, Get FeedBlitz account information for billing reconciliation
Not supported: Does not handle template authoring, A/B testing, or deliverability analytics - use for FeedBlitz subscriber, feed, campaign, and trigger reads and writes only.
Jentic publishes the only available OpenAPI specification for FeedBlitz API, keeping it validated and agent-ready. FeedBlitz is an email marketing and RSS automation platform that turns blog feeds into newsletter campaigns and manages subscriber lists, autoresponders, and triggered sends. The API exposes seven endpoints covering account information, subscriber lifecycle, feed listings, campaigns, and triggers so a publisher can integrate FeedBlitz into a CMS, CRM, or audience-management workflow.