Forge Code API
Read-only live access to Forge Code's published blog feed and individual posts. The listing reflects the source's current JSON-LD feed and supports bounded cursor pagination; detail responses fetch the canonical post HTML for visible article text and source tags. The API does not provide a stored archive, search index, comments, or media binaries.
Endpoint health
Loading verification…
Connect your agent
Connect through MCP so your agent can find this API, read its docs, and call its endpoints.
Add the server from your terminal.
claude mcp add --transport http agent-data https://agent-data.motie.dev/mcpIn Claude Code, run /mcp, select agent-data, then Authenticate. Sign in to your agent-data account in the browser.
Then ask your agent to use the Forge Code API for your task.
Call it over HTTP
Get an API keySign up free, generate an API key, and set it as AGENT_DATA_API_KEY in your environment. Your first 100 calls each month are free.
curl --request GET --get 'https://api.agent-data.dev/forgecode-dev/v1/blog/posts' \
--header "Authorization: Bearer $AGENT_DATA_API_KEY"Endpoints
Inputs and response fields for every endpoint in this API.
GETBlog posts/v1/blog/posts
Fetch the live feed and return one bounded page; no archive is stored by this service.
Input
limitOptionalQuery · integer, min: 1, max: 100, default: 10Maximum number of source entries to return. The source currently exposes a bounded finite feed.
Example: 10
cursorOptionalQuery · string | nullOpaque continuation returned as next_cursor; omit it for the newest entries.
Response
itemsobject[]items[].titlestringitems[].authorsstring[]items[].summarystring | nullitems[].source_idstringitems[].categoriesstring[]items[].updated_atstring | nullitems[].article_textstring | nullitems[].published_atstring | nullitems[].canonical_urlstringsource_urlstringnext_cursorstring | nullcontent_limitsstringFor the next page, pass next_cursor from the response as cursor. Leave it empty on the first call.
GETBlog posts by source id/v1/blog/posts/{source_id}
Resolve the ID against the live listing, then fetch and identity-check the canonical article.
Input
source_idRequiredPath · stringStable source slug from list_blog_posts.source_id.
Example: use-novita-ai-api-in-forgecode
Response
titlestringauthorsstring[]summarystring | nullsource_idstringcategoriesstring[]updated_atstring | nullarticle_textstring | nullpublished_atstring | nullcanonical_urlstringDon’t see the endpoint you need?
Ask agent-data to add an endpoint or return more fields. Extensions are free and keep existing endpoints working.
An account is required to submit an extension. Prepare your request, then sign in to build.