Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/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 Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
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 OpenAPI document · agent-readyAI/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://jentic.com/install.sh?src=apis&api=%2Fapis%2Fdev.to%2Fdev-to-chatgpt" | 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%2Fdev.to%2Fdev-to-chatgpt" | 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?

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

Setup

Setup

Wiring the DEV Community article search by hand means building the GET /api/articles/search call and parsing its query parameters and response yourself. Through Jentic you install once, import the DEV Community ChatGPT Plugin API from the API Directory, and your agent calls it, and since the search endpoint is anonymous there is no credential to configure.

Permission scoping

Permission scoping

The DEV article search exposes a single read-only operation, so you limit the agent to that search call: it can find published articles and has no ability to read full bodies, list comments, or write.

Credential management

Credential isolation

The DEV article search endpoint is anonymous, so no secret is held. Jentic still routes the call through your own instance so the agent's own keys and identity stay isolated from the upstream request and never enter its prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'find DEV articles about React', and Jentic returns the dev.to search operation with its query parameter schema so the agent calls the right endpoint without browsing the docs.

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.

Can I limit what my agent is allowed to do with the DEV Community ChatGPT Plugin API?

Yes. Jentic One runs self-hosted, so your own rules decide which operations and credentials the agent may use, and this API exposes just one read-only operation, GET /api/articles/search. You can scope the agent to that single search call, letting it find published DEV Community articles by keyword, tag, or username while giving it no way to read full article bodies, list comments, or write posts. Anything beyond article search stays off limits because you never grant it.

GET STARTED

Start building with DEV Community ChatGPT Plugin API

Explore with Jentic One
View OpenAPI Document