Skip to main content
GET
/
feeds
/
atom
Atom Feed
curl --request GET \
  --url https://api.buttercms.com/v2/feeds/atom/ \
  --header 'Authorization: <api-key>'
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<feed xmlns=\"http://www.w3.org/2005/Atom\" xml:lang=\"en-us\">\n   <title>Latest blog posts</title>\n   <link href=\"https://example.buttercms.com/blog/rss/\" rel=\"alternate\" />\n   <link href=\"https://example.buttercms.com/blog/atom/\" rel=\"self\" />\n   <id>https://example.buttercms.com/blog/rss/</id>\n   <updated>2024-01-15T10:00:00Z</updated>\n   <entry>\n      <title>API Development Best Practices for 2024</title>\n      <link href=\"https://example.buttercms.com/blog/api-development-best-practices\" rel=\"alternate\" />\n      <published>2024-01-15T10:00:00Z</published>\n      <updated>2024-01-15T10:00:00Z</updated>\n      <author>\n         <name>John Developer</name>\n      </author>\n      <id>https://example.buttercms.com/blog/api-development-best-practices</id>\n      <summary type=\"html\">Learn the essential best practices for building scalable and maintainable APIs in 2024.</summary>\n   </entry>\n   <entry>\n      <title>RESTful API Design Principles</title>\n      <link href=\"https://example.buttercms.com/blog/restful-api-design-principles\" rel=\"alternate\" />\n      <published>2024-01-12T09:00:00Z</published>\n      <updated>2024-01-12T09:00:00Z</updated>\n      <author>\n         <name>Sarah Architect</name>\n      </author>\n      <id>https://example.buttercms.com/blog/restful-api-design-principles</id>\n      <summary type=\"html\">Master the fundamental principles of RESTful API design for better developer experience.</summary>\n   </entry>\n</feed>\n"
Generate a fully compliant Atom 1.0 XML feed for your blog content, offering an alternative syndication format with rich metadata support. This endpoint is ideal for feed readers that prefer the Atom standard and applications requiring detailed content metadata. Atom 1.0 Compliance: Produces a standards-compliant Atom 1.0 XML feed with enhanced metadata support compared to RSS. The feed includes detailed author information, updated timestamps, content types, and rich linking relationships. Filtering Capabilities: Apply category or tag filters to generate specialized Atom feeds for specific content topics. This enables you to provide targeted content syndication for different audiences or subject areas.

Authorizations

Authorization
string
header
required

Set the Authorization header to Token your_read_api_token.

Example: Authorization: Token abc123def456

Note: The header value includes the Token prefix.

You can access your API token from your settings page.

Query Parameters

auth_token
string

Your ButterCMS read API token

category_slug
string

Filter the Atom feed to include only posts from a specific category.

Provide the URL-friendly slug of the category. When specified, only blog posts assigned to this category will be included in the Atom feed.

tag_slug
string

Filter the Atom feed to include only posts with a specific tag.

Provide the URL-friendly slug of the tag. When specified, only blog posts tagged with this tag will be included in the Atom feed.

Response

Atom feed generated successfully

Complete Atom 1.0 XML feed with blog posts