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 examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
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
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
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
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 / Productivity / ClickHelp Server API
ClickHelp Server API logo

ClickHelp Server API

★ Only Publicly Available OpenAPI DocumentProductivityCollaborationbasic16 EndpointsREST

For Agents

Read and write technical documentation in ClickHelp portals: list projects, create or update topics, fetch publications, and search content across a knowledge base.

Use for: I need to create a new topic in a ClickHelp project, Update an existing topic's content before a release, Search ClickHelp documentation for a specific procedure, List all topics under a documentation project

Not supported: Does not handle ticketing, customer support cases, or live chat - use for documentation portal management only.

Jentic publishes the only available OpenAPI specification for ClickHelp Server API, keeping it validated and agent-ready. The ClickHelp Server API gives programmatic access to a cloud-based technical writing and documentation platform, exposing projects, topics, publications, glossary terms, users, and full-text search. Authentication is HTTP Basic with an API key against a tenant-specific portal subdomain. It is suited to documentation teams that need to automate authoring workflows, sync content from external systems, or build agents that read and update help-center content.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the ClickHelp Server API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the ClickHelp Server 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%2Fclickhelp.com%2Fclickhelp" | 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%2Fclickhelp.com%2Fclickhelp" | 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 ClickHelp Server API.

Create and update documentation topics inside a ClickHelp project

Publish topic snapshots and retrieve publication metadata for release tracking

Run full-text search across topics, publications, and glossary entries

Manage glossary terms used to standardise terminology across help content

List portal users to drive review and assignment workflows

Sync external markdown or DITA content into ClickHelp projects on a schedule

Use Cases

Patterns agents use ClickHelp Server API for, with concrete tasks.

★ Automated Documentation Sync from Source

Documentation teams that author in markdown, AsciiDoc, or DITA in a Git repository can push content into ClickHelp on every merge by calling the topics endpoints. The agent walks the project tree, reconciles topics against /projects/{projectId}/topics, and creates or updates each one to keep the published portal in lockstep with the source repo. Typical end-to-end sync for a 200-topic project completes in minutes rather than the hours of manual import.

List all topics under projectId 'product-docs', diff against the local /docs folder, and PUT updated topic bodies for any file whose hash has changed since the last sync.

Help-Center Search Bot

Customer-support and internal-tools teams can build a chatbot that answers product questions by querying the ClickHelp /search endpoint and returning the top topic matches with snippets and links. Because search runs against the live portal, answers stay current without re-indexing. The same flow can power a Slack slash command or an in-app help widget.

Call GET /search with q='reset password' and return the top three topic titles and URLs as a Slack message.

Release Publication Tracking

Release managers can monitor which documentation versions are live by polling /publications and /publications/{publicationId}. The agent records which topics are included in each publication, generates a changelog from the diff between two publications, and posts the result to the release ticket. This removes the manual step of cross-checking the portal before sign-off.

List the last two publications, fetch their topic lists, and generate a markdown diff of added, removed, and updated topics.

AI Agent Documentation Assistant via Jentic

Agent builders integrating documentation tooling can register the ClickHelp Server API through Jentic and let an agent search topics, create drafts, and update content with no manual SDK setup. Jentic isolates the Basic Auth credential server-side, so the agent works against the portal without ever holding the password. Setup time drops from an afternoon of HTTP wiring to a single search-load-execute call.

Search Jentic for 'create a topic in clickhelp', load the operation schema, and execute it with projectId 'onboarding' and a generated topic body.

Key Endpoints

16 endpoints — jentic publishes the only available openapi specification for clickhelp server api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/projects

List documentation projects

POST

/projects/{projectId}/topics

Create a new topic in a project

PUT

/projects/{projectId}/topics/{topicId}

Update a topic's content

GET

/search

Search content across the portal

GET

/publications

List published documentation versions

GET

/glossary

List glossary terms

GET

/projects

List documentation projects

POST

/projects/{projectId}/topics

Create a new topic in a project

PUT

/projects/{projectId}/topics/{topicId}

Update a topic's content

GET

/search

Search content across the portal

GET

/publications

List published documentation versions

GET

/glossary

List glossary terms

Why Jentic?

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

Setup

Setup

Wiring the ClickHelp Server API by hand means setting up Basic auth, resolving your own {portal}.clickhelp.co host, and mapping calls across projects, topics, search, and publications yourself. Through Jentic you install once, import the ClickHelp Server API from the API Directory, store the username and API key once, and your agent calls it.

Permission scoping

Permission scoping

ClickHelp puts the project id in the URL path (/projects/{projectId}/topics, /projects/{projectId}/topics/{topicId}), so a rule can pin your agent to one documentation project and its topics. You choose the operations it may call, so topic updates are not included unless you add them.

Credential management

Credential isolation

Your ClickHelp username and API key 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 'create a topic in ClickHelp' or 'search documentation content', and Jentic returns the matching ClickHelp 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

Zendesk API

→

Help-center and ticketing platform with a documentation API for guide articles.

Choose Zendesk when the customer needs combined ticketing plus a knowledge base; choose ClickHelp for dedicated technical authoring with topic-based content.

Alternative

Freshdesk API

→

Customer support platform with knowledge-base solution articles.

Use Freshdesk when documentation lives alongside support tickets; use ClickHelp for standalone, structured technical docs.

Complementary

Zoho API

→

Business suite that often holds the customer or product context referenced in docs.

Pair with ClickHelp when a documentation update should also update a Zoho record (for example, linking release notes to a Zoho project).

FAQs

Specific to using ClickHelp Server API through Jentic.

Why is there no official OpenAPI spec for ClickHelp Server API?

ClickHelp does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call ClickHelp Server 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 ClickHelp Server API use?

The API uses HTTP Basic Auth, with a ClickHelp username and an API key passed as the password. When called through Jentic, the credential is held in your Jentic One instance and never enters the agent's context - the agent receives a scoped execution token instead of the raw key.

Can I create and update topics with the ClickHelp Server API?

Yes. POST /projects/{projectId}/topics creates a new topic and PUT /projects/{projectId}/topics/{topicId} updates an existing one. Both accept the topic body and metadata, so an agent can keep portal content synced from an external source.

How do I search documentation content with the ClickHelp Server API?

Call GET /search with a q query parameter. The endpoint returns matching topics, publications, and glossary entries from across the portal. Through Jentic, search for 'search clickhelp content' to load the operation schema and execute it.

What are the rate limits for the ClickHelp Server API?

ClickHelp does not publish hard rate limits in the spec. Limits are enforced per portal and depend on the subscription tier. Build clients to handle 429 responses with exponential backoff and contact ClickHelp support for tier-specific quotas.

How do I publish a topic update through Jentic?

Run pip install jentic, then search for 'update a clickhelp topic', load the PUT /projects/{projectId}/topics/{topicId} schema, and execute with the project id, topic id, and updated body. Jentic handles the Basic Auth header construction and returns the parsed response.

GET STARTED

Start building with ClickHelp Server API

Explore with Jentic
View OpenAPI Document