Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API 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 WorksAPI 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 / Social Media / Dev To / Forem API V1
Forem API V1 logo

Dev To Forem API V1

Browse all Dev To APIs
✓ Official Vendor SpecSocial MediaSocial PublishingapiKey58 EndpointsREST

For Agents

Publish, list, and moderate articles, comments, organizations, and users on DEV Community and other Forem instances through 58 Forem API V1 endpoints.

Use for: Publish a new article to my DEV Community account, List the latest published articles on dev.to, Get my unpublished drafts on DEV, Toggle a reaction on a DEV article

Not supported: Does not handle direct messaging, payments, full-text search of comments, or write access to comments — use for article publishing, organization, reaction, and moderation operations only.

The Forem API V1 powers DEV Community (dev.to) and other Forem-based developer communities. Its 58 endpoints cover articles, comments, reactions, tags, follows, organizations, pages, podcast episodes, billboards, segments, and admin operations such as suspending or marking users as trusted. Public reads work anonymously, while write operations and reads of personal content require the api-key request header issued from a user's DEV settings page. Use it to publish technical content programmatically, build dashboards over your own articles, or moderate a Forem instance from external tooling.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Forem API V1 to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Forem API V1, 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 Forem API V1 API.

Publish or update an article via POST /api/articles and PUT /api/articles/{id}, then unpublish via PUT /api/articles/{id}/unpublish

List your own articles by status via /api/articles/me/published, /api/articles/me/unpublished, and /api/articles/me/all

Manage organizations via POST /api/organizations and read members via GET /api/organizations/{organization_id_or_username}/users

Toggle a reaction on an article or comment via POST /api/reactions/toggle and POST /api/reactions

Create and curate user segments and billboards via POST /api/segments and POST /api/billboards

Read tags, follows, and reading lists via /api/tags, /api/follows/tags, and /api/readinglist

Moderate users with admin actions via PUT /api/users/{id}/suspend, /api/users/{id}/spam, and /api/users/{id}/trusted

Use Cases

Patterns agents use Forem API V1 API for, with concrete tasks.

★ Cross-posting and content syndication

Authors who write in their own CMS or blog can syndicate to DEV Community by calling POST /api/articles with the article body and canonical_url, then update edits with PUT /api/articles/{id}. The api-key header authenticates the request as the article's author. This is the standard path for cross-posting and keeps the DEV copy in sync with the source.

POST /api/articles with body containing title, body_markdown, canonical_url, and tags to publish a draft, then GET /api/articles/me/all to confirm it appears.

Personal writing dashboard

Build a private dashboard over your own DEV writing by combining /api/articles/me/published, /api/articles/me/unpublished, and /api/articles/me/all. Pair with /api/users/me to render the author's profile and follower counts. The 58-endpoint surface gives enough coverage to track drafts, edits, and engagement without scraping DEV's web UI.

GET /api/articles/me/published, then for each article id call /api/comments?a_id={id} to render a per-article comment count.

Forem instance moderation tooling

Operators of Forem-based communities can wire moderation actions (suspend, mark trusted, mark spam) into external tools through the admin endpoints under /api/users/{id}/*. Combine with /api/admin/users to onboard new users and /api/billboards to manage on-site placements. This is the API surface that staff dashboards and bots can build on top of.

PUT /api/users/{id}/suspend with the offending user id from a moderation report, then verify the user state by reading /api/users/{id}.

Agent-driven publishing assistant

An AI writing assistant can call the Forem API through Jentic to publish drafts, fetch comment threads, and react to mentions. The agent finds the right operation by intent (e.g., 'publish a DEV article'), and Jentic injects the api-key from the vault at execution time, so the user's DEV API key never lives in the agent's prompt or context.

Through Jentic, search 'publish a DEV.to article', load the dev.to /api/articles POST operation, and execute with the title, body_markdown, and tags from the user's draft.

Key Endpoints

58 endpoints — the forem api v1 powers dev community (dev.

METHOD

PATH

DESCRIPTION

GET

/api/articles

List published articles

POST

/api/articles

Publish a new article

PUT

/api/articles/{id}

Update an existing article

GET

/api/articles/me/all

List the authenticated user's articles

POST

/api/reactions/toggle

Toggle a reaction on a reactable

GET

/api/comments

List comments on an article or podcast

POST

/api/organizations

Create an organization

PUT

/api/users/{id}/suspend

Suspend a user (admin)

GET

/api/articles

List published articles

POST

/api/articles

Publish a new article

PUT

/api/articles/{id}

Update an existing article

GET

/api/articles/me/all

List the authenticated user's articles

POST

/api/reactions/toggle

Toggle a reaction on a reactable

GET

/api/comments

List comments on an article or podcast

POST

/api/organizations

Create an organization

PUT

/api/users/{id}/suspend

Suspend a user (admin)

Why Jentic?

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

Credential management

Credential isolation

Your DEV api-key is stored encrypted in the Jentic vault. Agents call operations through scoped Jentic tokens and the api-key header is set at execution, so the raw key never enters the agent's context.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'publish a DEV article' or 'list my DEV drafts') and Jentic returns the matching Forem operations with their input schemas already resolved.

Time to first call

Time to first call

Direct Forem integration takes a few hours to wire up the api-key header, body_markdown encoding, and CORS-disabled call patterns. Through Jentic the same operations are executable in minutes.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

DEV Community ChatGPT Plugin API

→

Single article search endpoint for LLM article recommendations.

Use the chatgpt spec when an LLM only needs to recommend DEV articles by keyword and does not need write access.

Complementary

GitHub REST API

Repository, issue, and gist APIs that pair with DEV writing.

Pair with DEV when an article needs to reference or embed code from a repository or gist.

Alternative

Product Hunt

→

Community for product launches and discussions.

Choose Product Hunt when the goal is product launch posts rather than long-form developer writing.

FAQs

Specific to using Forem API V1 API through Jentic.

What authentication does the Forem API V1 use?

Forem authenticates writes and personal reads with an api-key request header issued from your DEV settings page (https://dev.to/settings/extensions). Public read endpoints such as /api/articles work without a key. Through Jentic the api-key is held in the vault and added to the request server-side, so the raw key never reaches the agent.

Can I publish a DEV article through the Forem API?

Yes. POST /api/articles with title, body_markdown, optional canonical_url, and tags publishes the article. PUT /api/articles/{id} updates it and PUT /api/articles/{id}/unpublish removes it from public listing. The author identity is taken from the api-key header.

What are the rate limits for the Forem API V1?

DEV does not declare formal rate limits in this OpenAPI spec. Authenticated endpoints are CORS-disabled and intended for non-browser scripts; treat HTTP 429 as a signal to back off and slow your request rate. For sustained high-volume publishing, contact DEV before launching.

How do I list my own drafts on DEV through Jentic?

Through Jentic, search 'list my DEV unpublished drafts', load the dev.to /api/articles/me/unpublished operation, and execute it. Jentic injects the api-key from the vault and returns your unpublished articles ready to be edited.

Can I moderate users on a Forem instance with this API?

Yes, with admin privileges. PUT /api/users/{id}/suspend, PUT /api/users/{id}/spam, and PUT /api/users/{id}/trusted toggle moderation states, and DELETE variants reverse them. POST /api/admin/users creates a user. These endpoints require an admin-level api-key on the Forem instance.

How do I read comments on a specific DEV article?

Use GET /api/comments with the article id query parameter (a_id) to fetch the comment tree, and GET /api/comments/{id} to read a single comment. Comment writes are not exposed through this version of the Forem API.

GET STARTED

Start building with Forem API V1 API

Explore with Jentic
View OpenAPI Document