All requests below will use this key. Your API key is sent directly to api.cueapi.ai and never stored by the docs site.

Blog RSS Feed

RSS 2.0 feed of published CueAPI blog posts.

RSS Feed

GET /v1/blog/rss

Returns an RSS 2.0 XML feed of all published blog posts, ordered by publication date (newest first). No authentication required.

Response

Content-Type: application/rss+xml

The feed includes:

  • Channel title: "CueAPI Blog"
  • Channel link: https://cueapi.ai/blog
  • Up to 50 published posts
  • Each item contains title, description (excerpt), pubDate, link, guid, and full article content in content:encoded CDATA
bash
curl https://api.cueapi.ai/v1/blog/rss
xml
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>CueAPI Blog</title>
    <link>https://cueapi.ai/blog</link>
    <description>Scheduling infrastructure for agents</description>
    <language>en-us</language>
    <item>
      <title>Schedule Your First Agent Task in 5 Minutes</title>
      <link>https://cueapi.ai/blog/schedule-first-agent-task</link>
      <description>Step-by-step tutorial for scheduling agent tasks.</description>
      <guid isPermaLink="true">https://cueapi.ai/blog/schedule-first-agent-task</guid>
      <pubDate>Sat, 14 Mar 2026 00:00:00 +0000</pubDate>
      <content:encoded><![CDATA[## Introduction ...]]></content:encoded>
    </item>
  </channel>
</rss>

Note

Subscribe to the CueAPI blog RSS feed at https://api.cueapi.ai/v1/blog/rss to get new articles in your feed reader.

How do I know if my agent ran successfully?
Ctrl+K