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.
Get started with DEV Community ChatGPT Plugin API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"search dev.to articles by keyword"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with DEV Community ChatGPT Plugin API 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
GET STARTED
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.
Use anonymously without an API key for public read-only article discovery
Patterns agents use DEV Community ChatGPT Plugin API 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.
1 endpoints — dev community publishes a chatgpt-plugin-shaped openapi spec exposing a single article search endpoint at /api/articles/search.
METHOD
PATH
DESCRIPTION
/api/articles/search
Search DEV Community articles by keyword, tag, or username
/api/articles/search
Search DEV Community articles by keyword, tag, or username
Three things that make agents converge on Jentic-routed access.
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
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
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.
Alternatives and complements available in the Jentic catalogue.
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.
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.
Product Hunt
Community-curated product launches and discussions.
Choose Product Hunt when the user wants new product discovery rather than technical articles.
Specific to using DEV Community ChatGPT Plugin API 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.