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 / AI/ML / Dev To / DEV Community ChatGPT Plugin API
DEV Community ChatGPT Plugin API logo

Dev To DEV Community ChatGPT Plugin API

Browse all Dev To APIs
✓ Official Vendor SpecAI/MLLanguage Modelsnone1 EndpointsREST

For Agents

Search DEV Community articles by keyword, tag, or username through a single GET /api/articles/search endpoint, suitable as an LLM tool for content recommendation.

Use for: Find DEV.to articles about Rust async patterns, Search for articles tagged 'webdev' on DEV Community, Get the latest articles by a specific DEV user, Recommend a DEV article matching a user's question

Not supported: Does not read full article bodies, list comments, or perform any write operation — use for searching DEV Community articles only.

DEV Community publishes a ChatGPT-plugin-shaped OpenAPI spec exposing a single article search endpoint at /api/articles/search. It lets a language model query DEV's article corpus by keyword, tag, or username and recommend relevant resources back to a user. Because there is exactly one operation, this spec is best understood as a focused recommendation tool rather than a full content management surface — for write operations and the rest of DEV's content model, use the Forem API V1 (dev.to main) instead.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the DEV Community ChatGPT Plugin API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the DEV Community ChatGPT Plugin 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://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 DEV Community ChatGPT Plugin API.

Search DEV Community articles by free-text keyword via GET /api/articles/search

Filter article results by tag, username, or other supported query parameters in /api/articles/search

Recommend DEV articles to a user based on a topical prompt with a single tool call

Retrieve article metadata (title, url, tags) suitable for embedding in an LLM response

Use anonymously without an API key for public read-only article discovery

Use Cases

Patterns agents use DEV Community ChatGPT Plugin API for, with concrete tasks.

★ LLM article recommender

An LLM can call GET /api/articles/search to recommend DEV Community articles that match a user's question or interest. The endpoint accepts free-text and filters such as tag and username, and returns enough metadata for the model to cite article titles and URLs in its answer. Because the endpoint is anonymous and read-only, there is no credential handling for this specific operation.

GET /api/articles/search?q=rust+async+tokio and return the top 3 results with title and URL to the user.

Tag-based content discovery

Use the search endpoint with a tag filter to surface recent DEV articles in a topic area, useful for newsletter curation, learning tracks, or in-app content modules. Pair the results with the Forem main API if you need to fetch full bodies, comment counts, or write reactions; this plugin spec only covers the search itself.

GET /api/articles/search?tag=javascript&q=performance and produce a curated list of 5 articles for a weekly newsletter.

Agent-driven recommendation tool

An AI agent can register the DEV search operation as a single tool through Jentic and call it whenever a user asks for technical reading material. Jentic returns the operation schema and executes the request, so the agent does not need to maintain its own DEV integration code path or worry about endpoint format changes.

Through Jentic, search 'search dev.to articles', load the dev.to chatgpt /api/articles/search operation, and execute with the user's topic to return ranked article suggestions.

Key Endpoints

1 endpoints — dev community publishes a chatgpt-plugin-shaped openapi spec exposing a single article search endpoint at /api/articles/search.

METHOD

PATH

DESCRIPTION

GET

/api/articles/search

Search DEV Community articles by keyword, tag, or username

GET

/api/articles/search

Search DEV Community articles by keyword, tag, or username

Why Jentic?

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

Credential management

Credential isolation

The DEV article search endpoint is anonymous, so no credential is held. Jentic still routes the call through its scoped agent token so the agent's own keys and identity are isolated from the upstream HTTP request.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'find DEV articles about React') and Jentic returns the dev.to chatgpt /api/articles/search operation with its query parameter shape.

Time to first call

Time to first call

Direct integration is trivially short for one endpoint, but you still maintain the URL, query encoding, and response parsing. Through Jentic, the same call is a single search-and-execute pair with no integration boilerplate.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Forem API V1

→

Full DEV/Forem API covering articles, comments, users, and write operations.

Use the Forem API V1 when you need to read full article bodies, list articles by user, or publish content — the chatgpt spec only covers search.

Complementary

GitHub REST API

Search and read code repositories alongside DEV articles.

Pair GitHub search with DEV article search when answering developer questions that benefit from both code examples and write-ups.

Alternative

Product Hunt

→

Community-curated product launches and discussions.

Choose Product Hunt when the user wants new product discovery rather than technical articles.

FAQs

Specific to using DEV Community ChatGPT Plugin API through Jentic.

What does the DEV Community ChatGPT API actually do?

It exposes a single endpoint, GET /api/articles/search, which lets an LLM search DEV Community articles by keyword, tag, or username. The response is metadata suitable for citing article titles and URLs back to a user. For broader DEV functionality such as reading full articles or writing posts, use the Forem API V1 at dev.to main.

What authentication does the DEV ChatGPT plugin API require?

The /api/articles/search endpoint in this spec is anonymous and read-only — no API key is required. Through Jentic, the call goes out from a Jentic-managed identity, so no credential is provisioned or required for this operation.

Can I write or publish articles with this DEV API?

No. This spec is read-only and limited to /api/articles/search. To create or update DEV articles, use the Forem API V1 (vendor dev.to, slug main), which exposes write operations on /api/articles and authenticates with the api-key header.

How do I recommend DEV articles to a user through Jentic?

Search Jentic for 'search dev.to articles', load the dev.to chatgpt /api/articles/search operation, and execute it with the user's query, optionally adding tag or username filters. Render the returned titles and URLs back into the agent's response.

What are the rate limits for the DEV article search endpoint?

DEV does not publish formal rate limits in the spec. As with any public anonymous endpoint, expect per-IP throttling and treat HTTP 429 as a signal to back off. For sustained or higher-throughput discovery, use the authenticated Forem API V1 instead.

GET STARTED

Start building with DEV Community ChatGPT Plugin API

Explore with Jentic
View OpenAPI Document