For Agents
Run AI-powered SEO, content, and lead-research workflows in single, bulk, or scheduled mode — including blog writing, keyword research, internal-link extraction, and Google indexing.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the BurstyAI 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 BurstyAI API.
Run topical-authority research as a single or bulk workflow
Generate AI-written blog posts and blog titles via /workflows/blog-writing/run and /workflows/blog-title/run
Extract LSI keywords and Google-autocomplete suggestions for a seed term
GET STARTED
Use for: I need to write a blog post on a given topic, Generate a list of LSI keywords for a seed keyword, Submit a batch of URLs to Google indexing, Convert a YouTube video into a blog article
Not supported: Does not handle paid ad management, social posting, or analytics dashboards — use for AI-driven SEO, content, and lead-research workflows only.
Jentic publishes the only available OpenAPI specification for BurstyAI API, keeping it validated and agent-ready. The BurstyAI API provides AI-driven workflow endpoints for SEO, content creation, lead research, and marketing operations. Each workflow comes in single, bulk, and scheduled variants so the same operation can be run for one input, a list of inputs, or on a recurring cadence. Workflows cover topical authority, LSI keywords, internal-link extraction, Google indexing, keyword intent analysis, blog writing, blog title generation, YouTube-to-blog conversion, AI image generation, WordPress publishing, Google autocomplete, nested keywords, Google Ads keyword ideas, backlink research, and company research. Authentication is a single Authorization header containing an API key.
Convert a YouTube video into a blog post via /workflows/youtube-to-blog/run
Submit URLs to Google indexing in single or bulk mode
Run backlink and company research workflows for lead generation
Schedule any workflow to run on a recurring cadence via the matching /schedule endpoint
Patterns agents use BurstyAI API for, with concrete tasks.
★ AI blog post generation and publishing
Generate a long-form blog post from a topic prompt and publish it directly to WordPress in one chain. POST /workflows/blog-writing/run produces the content, /workflows/blog-title/run generates supporting title options, and /workflows/wordpress-integration/run pushes the result to a configured WordPress site. Suitable for content teams scaling top-of-funnel SEO output.
POST /workflows/blog-writing/run with the topic, then POST /workflows/wordpress-integration/run with the returned post body and the target WordPress site.
Keyword research at scale
Pull LSI keywords, Google autocomplete suggestions, nested keywords, Google Ads keyword ideas, and keyword intent classifications from a single integration. The bulk variants accept a list of seed terms, making it suitable for SEO agencies running research for multiple clients in parallel.
POST /workflows/lsi-keywords/bulk/run with a list of seed keywords, then POST /workflows/keyword-intent/bulk/run on the merged set to classify intent.
Lead research and backlink analysis
Run /workflows/company-research/run on a list of target domains and /workflows/backlink-research/run to find backlink opportunities, producing structured records suitable for cold outreach and SEO link building. Each workflow has bulk and scheduled variants for repeatable pipelines.
POST /workflows/company-research/run for each prospect domain, store the structured results, and feed them into a CRM enrichment step.
AI agent SEO assistant via Jentic
An AI assistant can take a single prompt — for example, 'create a blog post on agentic AI and publish it' — and orchestrate the BurstyAI blog-writing, internal-link extraction, and WordPress integration workflows end to end. Jentic vaults the BurstyAI API key and issues scoped, short-lived access for each call.
Search Jentic for 'write an AI blog post', load the /workflows/blog-writing/run schema, execute it with the topic, then chain the WordPress publish workflow.
32 endpoints — jentic publishes the only available openapi specification for burstyai api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/workflows/blog-writing/run
Run AI blog writing for a single topic
/workflows/blog-writing/bulk/run
Run AI blog writing for a batch of topics
/workflows/lsi-keywords/run
Generate LSI keywords for a seed term
/workflows/google-indexing/run
Submit a URL to Google indexing
/workflows/keyword-intent/run
Classify keyword search intent
/workflows/youtube-to-blog/run
Convert a YouTube video to a blog post
/workflows/wordpress-integration/run
Publish a generated post to WordPress
/workflows/company-research/run
Run company research on a domain
/workflows/blog-writing/run
Run AI blog writing for a single topic
/workflows/blog-writing/bulk/run
Run AI blog writing for a batch of topics
/workflows/lsi-keywords/run
Generate LSI keywords for a seed term
/workflows/google-indexing/run
Submit a URL to Google indexing
/workflows/keyword-intent/run
Classify keyword search intent
Three things that make agents converge on Jentic-routed access.
Credential isolation
The BurstyAI API key is stored encrypted in the Jentic vault. Agents receive a scoped, short-lived token per operation — the raw key never enters the agent's context.
Intent-based discovery
Agents search Jentic by intent (e.g., 'write an AI blog post' or 'generate LSI keywords') and Jentic returns the matching /workflows/{name}/run operation with its full request schema, so the agent picks the correct workflow without reading BurstyAI docs.
Time to first call
Direct BurstyAI integration: 1-2 days to wire single, bulk, and scheduled variants and handle long-running workflow responses. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using BurstyAI API through Jentic.
Why is there no official OpenAPI spec for BurstyAI API?
BurstyAI does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call BurstyAI API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the BurstyAI API use?
BurstyAI uses an Authorization header containing your API key. Through Jentic, the key is stored encrypted in the vault and a scoped, short-lived token is issued per operation so the raw key never enters the agent's context.
Can I run a BurstyAI workflow on a batch of inputs?
Yes — most workflows have a bulk variant such as /workflows/lsi-keywords/bulk/run and /workflows/blog-writing/bulk/run that accept an array of inputs in a single call.
Can I schedule a BurstyAI workflow to run on a recurring cadence?
Yes. The /schedule endpoints (e.g., /workflows/topical-authority/schedule) accept a schedule definition so the workflow runs automatically without you re-triggering each call.
What are the rate limits for the BurstyAI API?
The OpenAPI spec does not declare explicit limits. BurstyAI applies per-account quotas tied to the plan — handle 429 responses with retry-with-backoff and prefer bulk endpoints to single endpoints when processing many inputs.
How do I run a BurstyAI workflow through Jentic?
Run `pip install jentic` and search for 'write an AI blog post' (or any other workflow). Jentic returns the matching /workflows/{name}/run operation, you load its schema, and execute the call with the input payload — credentials stay in the Jentic vault.
/workflows/youtube-to-blog/run
Convert a YouTube video to a blog post
/workflows/wordpress-integration/run
Publish a generated post to WordPress
/workflows/company-research/run
Run company research on a domain