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 / Communications / Discourse API Documentation
Discourse API Documentation logo

Discourse API Documentation

✓ Official Vendor SpecCommunicationsChat MessagingapiKey93 EndpointsREST

For Agents

Create topics, post replies, manage users and groups, and run admin operations on a Discourse forum. Useful for community-management, support, and event-coordination agents.

Use for: Create a new topic in a Discourse category, Post a reply to an existing Discourse topic, Search a Discourse forum for topics matching a keyword, List upcoming Discourse community events

Not supported: Does not handle real-time WebSocket events or transactional email delivery — use for hosted Discourse forum REST operations only.

Discourse is the open-source forum software behind tens of thousands of communities, support sites, and product hubs. The hosted discourse.org API exposes 93 operations covering topics, posts, categories, users, groups, badges, tags, search, private messages, the discourse-post-event plugin, and admin features such as backups and site settings. It is the same surface used internally by the Discourse mobile app and core integrations.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Discourse API Documentation to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Discourse API Documentation, 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 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 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 Discourse API Documentation API.

Create and reply to forum topics with Markdown via /posts.json and /t/{id}.json

Search topics, posts, and users via /search/query.json with category, tag, and user filters

Manage groups, group memberships, and category access through /groups and /admin/groups

Schedule and list community events via the /discourse-post-event/events.json endpoints

Administer categories, badges, tags, and site backups through admin-prefixed endpoints

Manage user accounts and notifications through /users endpoints

Use Cases

Patterns agents use Discourse API Documentation API for, with concrete tasks.

★ Customer Community and Support Forum Automation

Product teams running a Discourse community can automate the lifecycle of support topics — creating posts from inbound support tickets, tagging them, and notifying owners through group mentions. The /posts.json and /t/{id}.json endpoints handle topic creation and replies, while /search/query.json finds duplicate threads. This keeps the public knowledge base growing without manual triage.

POST /posts.json to create a new support topic with title, raw Markdown body, and category ID, then attach product-area tags via /t/{id}.json.

Community Events with Discourse Post Event Plugin

Communities using the discourse-post-event plugin can list, create, and export community events directly via the /discourse-post-event/events.json and /discourse-post-event/events.ics endpoints. Calendars can be embedded into external sites or pulled into personal calendars, giving members a single source of truth for meetups, AMAs, and office hours.

GET /discourse-post-event/events.json filtered to upcoming events for the 'meetups' category and render the response as a calendar widget.

Group Sync from External Identity Systems

Hosted Discourse customers can keep group membership in sync with HR systems, CRMs, or partner directories. PUT /groups/{id}/members and DELETE /groups/{id}/members add and remove users while /groups/{id}.json fetches state. This is commonly used to grant access to private categories based on subscription tier or role in another system.

Add user 'jane.doe' to the 'paid-customers' group via PUT /groups/{id}/members and confirm membership with GET /groups/{id}/members.

Forum Backups and Admin Automation

Hosted and self-hosted Discourse operators can automate routine admin work — triggering nightly backups via /admin/backups.json, downloading the latest backup file, and rotating retention. Category, badge, and group management can also be scripted from CI for reproducible community governance, especially when promoting changes from staging to production.

POST /admin/backups.json to trigger a fresh backup and poll until the file is available, then download via the returned filename.

AI Agent Community Assistant

AI agents can act as Discourse community helpers — answering recurring questions, posting daily summaries, and tagging stale topics — by calling the Discourse API through Jentic. The Api-Key and Api-Username headers stay in MAXsystem and never appear in the agent's context, while Jentic search lets the agent find the right topic or post operation by intent.

Search Jentic for 'reply to a Discourse topic', load the POST /posts.json operation, and execute it to post a daily community digest summary into the announcements category.

Key Endpoints

93 endpoints — discourse is the open-source forum software behind tens of thousands of communities, support sites, and product hubs.

METHOD

PATH

DESCRIPTION

POST

/posts.json

Create a new topic or reply to an existing topic

GET

/categories.json

List forum categories

GET

/discourse-post-event/events.json

List community events

GET

/discourse-post-event/events.ics

Export community events as iCal

PUT

/groups/{id}/members

Add members to a group

POST

/admin/backups.json

Trigger a forum backup

POST

/admin/badges.json

Create a new badge

POST

/posts.json

Create a new topic or reply to an existing topic

GET

/categories.json

List forum categories

GET

/discourse-post-event/events.json

List community events

GET

/discourse-post-event/events.ics

Export community events as iCal

PUT

/groups/{id}/members

Add members to a group

POST

/admin/backups.json

Trigger a forum backup

POST

/admin/badges.json

Create a new badge

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Discourse Api-Key and Api-Username are stored encrypted in Jentic's MAXsystem vault and added to outgoing requests at execution time. The raw API key never enters the agent's context, which matters because Discourse admin keys grant near-root forum access.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'create a forum topic' or 'list community events') and Jentic returns the matching Discourse operation across the 93-endpoint surface, so the agent can act without browsing the Discourse documentation.

Time to first call

Time to first call

Direct Discourse integration: 1-2 days for key issuance, header handling, and category/tag mapping. Through Jentic: under 30 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Discourse (self-hosted)

→

Self-hosted Discourse on a custom or local domain

Choose discourse.local when running on a self-hosted instance with a custom domain; choose discourse.org for the hosted SaaS plans.

Alternative

Mattermost

→

Self-hosted real-time team messaging

Choose Mattermost for synchronous team chat; choose Discourse for asynchronous threaded forum discussions.

Complementary

Zendesk

→

Customer support ticketing platform

Pair Zendesk private tickets with Discourse public forums to mirror community-resolved questions back to the public knowledge base.

FAQs

Specific to using Discourse API Documentation API through Jentic.

What authentication does the Discourse API use?

Discourse uses two headers: Api-Key (an admin or user-scoped key) and Api-Username (the username the request acts on behalf of). Through Jentic, both values are held in the MAXsystem vault and injected at execution; agents never see the raw key.

Can I list community events with the Discourse API?

Yes, when the discourse-post-event plugin is enabled. /discourse-post-event/events.json returns events as JSON and /discourse-post-event/events.ics returns the same set as an iCalendar feed for embedding in personal or external calendars.

What are the rate limits for the Discourse API?

Discourse enforces per-action rate limits configured by site settings such as max_requests_per_minute, max_post_creates_per_minute, and per-IP limits. Hosted plans publish defaults per tier. Inspect site settings or contact your Discourse hosting provider for the exact values applied to your forum.

How do I create a topic on Discourse through Jentic?

Search Jentic for 'create a topic on Discourse', load the POST /posts.json operation, and execute it with title, raw Markdown content, category ID, and any tags. Jentic returns the new topic's ID and slug for follow-up operations.

Can I export forum data with the Discourse API?

Yes, /admin/backups.json triggers a full forum backup, and /admin/backups/{filename} downloads a specific backup. Combined with category, topic, and user listing endpoints, you can also build incremental exports without invoking the full backup process.

GET STARTED

Start building with Discourse API Documentation API

Explore with Jentic
View OpenAPI Document