For Agents
Run SEO content analyses, fetch keyword recommendations, and score draft content against target keywords inside NeuronWriter projects.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the NeuronWriter 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 NeuronWriter API.
List all NeuronWriter projects available to the authenticated workspace
Create a new content analysis query for a target keyword and language inside a project
Retrieve content recommendations including target terms, outline, and competitor data for an existing query
GET STARTED
Use for: Create a new NeuronWriter content analysis for the keyword 'best running shoes', List all NeuronWriter projects in my workspace, Retrieve content recommendations for an existing NeuronWriter query, I want to score a draft article against my target keyword
Not supported: Does not handle backlink analysis, keyword volume research, or rank tracking — use for on-page SEO content analysis and scoring only.
The NeuronWriter API automates SEO content optimisation by giving programmatic access to projects, content analysis queries, on-page recommendations, and content scoring. Teams can create new keyword analysis queries, list and retrieve projects, pull recommended terms and outlines, push draft content into the editor, and evaluate content scores without saving the result. Access requires a Gold-tier subscription or higher and is gated by an X-API-KEY header.
List queries within a project filtered by status, language, or creation date
Pull saved draft content for a query so an external editor can sync the latest version
Import draft content into the NeuronWriter editor and persist it against a query
Evaluate the content score for a draft against a query's recommendations without saving the draft
Patterns agents use NeuronWriter API for, with concrete tasks.
★ Automated Brief Generation
Content teams call POST /new-query to spawn a NeuronWriter analysis the moment a new keyword is approved in their editorial calendar, then call POST /get-query to retrieve the resulting target terms, suggested outline, and competitor signals. The brief lands in the writer's queue without any manual setup inside the NeuronWriter UI.
Call POST /new-query with the keyword and language, poll POST /get-query until status is completed, and write the recommended terms and outline to the team's content management system.
Pre-Publish Content Scoring
Editors gate publication on a minimum NeuronWriter content score by calling POST /evaluate-content with the draft body and the target query identifier. The endpoint returns the score without persisting the draft, so authors can iterate locally until they hit the threshold before pushing through POST /import-content.
POST /evaluate-content with the draft markdown and query_id, parse the score, and block publication if the score is below 70 by raising a workflow error.
CMS Sync of Optimisation State
Marketing operations teams keep their CMS aligned with NeuronWriter by listing queries through POST /list-queries on a schedule, retrieving each query's recommendations, and updating the corresponding CMS entry with the latest target terms and score. This avoids drift between the SEO tool and the publishing surface.
Run POST /list-queries nightly, iterate the returned queries, fetch each via POST /get-query, and upsert the recommendations into the CMS post record keyed by query_id.
AI Agent SEO Editor
An AI writing agent uses Jentic to discover NeuronWriter operations, drafts an article in its own loop, calls POST /evaluate-content to check the score, and iterates the draft until it clears the threshold. Once the score is acceptable, the agent calls POST /import-content to persist the final draft into NeuronWriter.
Use Jentic to search 'evaluate seo content score', load POST /evaluate-content, run it after each draft revision, and call POST /import-content once the score crosses the configured threshold.
7 endpoints — the neuronwriter api automates seo content optimisation by giving programmatic access to projects, content analysis queries, on-page recommendations, and content scoring.
METHOD
PATH
DESCRIPTION
/list-projects
List all projects
/new-query
Create a content analysis query
/get-query
Get content recommendations for a query
/list-queries
List queries matching criteria
/get-content
Get saved content for a query
/import-content
Import content into the editor
/evaluate-content
Evaluate content score without saving
/list-projects
List all projects
/new-query
Create a content analysis query
/get-query
Get content recommendations for a query
/list-queries
List queries matching criteria
/get-content
Get saved content for a query
Three things that make agents converge on Jentic-routed access.
Credential isolation
NeuronWriter X-API-KEY values are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw API keys never enter the agent's context.
Intent-based discovery
Agents search by intent (e.g., 'evaluate seo content score') and Jentic returns matching NeuronWriter operations with their input schemas, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct NeuronWriter integration: 1-2 days for API key setup, query lifecycle handling, and content evaluation wiring. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using NeuronWriter API through Jentic.
What authentication does the NeuronWriter API use?
NeuronWriter authenticates via an API key sent in the X-API-KEY header. The key requires a Gold-tier plan or higher. Through Jentic, the API key is stored in the encrypted MAXsystem vault and injected at request time so it never reaches the agent's context.
Can I create a content analysis query through the NeuronWriter API?
Yes. POST /new-query accepts a project identifier, target keyword, and language, then queues an analysis. Once the analysis is ready, POST /get-query returns the recommended terms, outline, and competitor data for that query.
How do I score draft content against a target keyword through Jentic?
Search Jentic for 'evaluate neuronwriter content score', load POST /evaluate-content, and execute it with the draft body and query_id. The endpoint returns the content score without saving the draft, so it is safe to call repeatedly while iterating.
What are the rate limits for the NeuronWriter API?
The spec does not publish explicit numeric rate limits. NeuronWriter throttles by plan tier — Gold and above include the API. Treat /new-query and /evaluate-content as the heaviest calls and back off on 429 responses.
Can I import a finished article back into NeuronWriter?
Yes. POST /import-content accepts the query identifier and the draft body and saves the content against that query. This is the endpoint to call once an external editor or AI agent has finished a draft.
Is the NeuronWriter API free?
API access requires a NeuronWriter subscription at the Gold tier or higher. The free trial does not include API access.
/import-content
Import content into the editor
/evaluate-content
Evaluate content score without saving