For Agents
Spin and paraphrase article text — submit content and receive rewritten versions suitable for SEO and content variation workflows.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Chimp Rewriter 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 Chimp Rewriter API.
Rewrite a single article passage into a paraphrased version via the /ChimpRewrite endpoint
Submit multiple text payloads for batch rewriting in one call through /ChimpRewriteBatch
Tune rewrite aggressiveness with parameters that control synonym substitution depth
GET STARTED
Use for: I need to spin an article into a paraphrased version, Rewrite this blog post in different words, Generate a paraphrased variant of marketing copy, Submit a batch of articles for simultaneous rewriting
Not supported: Does not handle original content generation, grammar correction, or translation — use for paraphrasing and article spinning only.
Jentic publishes the only available OpenAPI specification for Chimp Rewriter API, keeping it validated and agent-ready. Chimp Rewriter is an article spinning and rewriting service that produces alternate phrasings of input text using a thesaurus-based engine combined with natural language processing. The API exposes form-encoded POST endpoints for rewriting a single passage or for batch rewriting multiple passages in one call. It is used by SEO operators, content marketers, and aggregators who need to generate paraphrased versions of copy at scale.
Generate alternate phrasings of marketing copy without manual thesaurus lookup
Produce paraphrased variations of product descriptions for SEO content seeding
Patterns agents use Chimp Rewriter API for, with concrete tasks.
★ SEO Content Variation
Generate paraphrased variants of an article so the same source material can be published across multiple landing pages without duplicate content penalties. Submit the source text to /ChimpRewrite and the API returns a rewritten passage with synonyms swapped and sentence structure altered. Useful for SEO agencies producing localised or city-targeted variants of a core blog post.
Send a 500-word source article to /ChimpRewrite with default rewrite settings and return the rewritten version
Bulk Product Description Rewriting
E-commerce operators with thousands of catalogue entries can rewrite vendor-supplied product descriptions to produce store-specific copy. Submit an array of descriptions to /ChimpRewriteBatch and receive rewritten output for each. This avoids the duplicate-content issue that arises when many resellers publish identical manufacturer copy.
POST 50 product description strings to /ChimpRewriteBatch and return rewritten versions paired with original IDs
Affiliate Content Seeding
Affiliate site operators rewrite review snippets and round-up content to seed new niche sites without copying source material verbatim. The /ChimpRewrite endpoint accepts the source passage and returns a synonym-substituted variant suitable for review and human editing before publication.
Rewrite a 300-word product review with quality settings and return the spun text
Agent-Driven Content Pipeline
An AI agent orchestrating a content workflow can call Chimp Rewriter through Jentic to produce paraphrased drafts as one step in a larger pipeline that also drafts, edits, and publishes content. The agent searches Jentic for 'rewrite an article', loads the /ChimpRewrite operation, and executes the rewrite without holding raw API credentials.
Search Jentic for 'rewrite an article', load the ChimpRewrite operation, and execute it on a draft passage
2 endpoints — jentic publishes the only available openapi specification for chimp rewriter api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/ChimpRewrite
Rewrite or spin a single text passage
/ChimpRewriteBatch
Submit multiple passages for batch rewriting
/ChimpRewrite
Rewrite or spin a single text passage
/ChimpRewriteBatch
Submit multiple passages for batch rewriting
Three things that make agents converge on Jentic-routed access.
Credential isolation
Chimp Rewriter API keys are stored encrypted in the Jentic vault. Agents receive scoped access — raw keys never enter the agent's context or appear in logs.
Intent-based discovery
Agents search by intent (e.g., 'rewrite an article') and Jentic returns the matching ChimpRewrite or ChimpRewriteBatch operation along with its input schema.
Time to first call
Direct integration: a few hours for auth, payload encoding, and error handling. Through Jentic: under 15 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Chimp Rewriter API through Jentic.
Why is there no official OpenAPI spec for Chimp Rewriter API?
ChimpRewriter does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Chimp Rewriter 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 Chimp Rewriter API use?
Chimp Rewriter authenticates with an API key passed alongside form-encoded request parameters to /ChimpRewrite and /ChimpRewriteBatch. When called through Jentic, the key is stored encrypted in the Jentic vault and never enters the agent's context — the agent receives a scoped reference instead of the raw key.
Can I batch rewrite multiple articles in one call with Chimp Rewriter?
Yes. The /ChimpRewriteBatch endpoint accepts multiple text payloads in a single POST request and returns rewritten output for each, which is more efficient than looping single calls when processing tens or hundreds of passages.
What are the rate limits for the Chimp Rewriter API?
Specific rate limits are not declared in the OpenAPI spec. ChimpRewriter enforces request throttling tied to subscription tier; check your account dashboard for current limits and plan to backoff on HTTP 429 responses.
How do I rewrite an article with Chimp Rewriter through Jentic?
Run pip install jentic, search for 'rewrite an article', load the ChimpRewrite operation, then execute with your source text as the input field. Jentic handles the form-encoded POST to /ChimpRewrite and returns the rewritten passage.
Does Chimp Rewriter accept HTML or only plain text?
The /ChimpRewrite endpoint accepts plain text input; HTML markup passed in the body may be preserved as literal characters in the rewritten output, so strip tags before submission if you only need the prose rewritten.