Atom Feed
Every H5mag publication includes a built-in Atom feed. This feed allows platforms, aggregators, and RSS readers to stay up to date with your latest editions automatically.
Example feed URL: https://yourpublication.h5mag.com/editions.atom
Replace yourpublication
with the actual project name of your publication.
Each entry in the feed includes:
- Title – The name of the edition
- Link – A direct URL to the live edition
- Publication date – In ISO 8601 format
- Author – The name of the project
- Summary – A short introduction or teaser (the same text that is shown in the edition shelf on your homepage)
- Cover image – Embedded in the
<content>
tag using HTML
This feed can be used for:
- RSS and Atom readers
- Email alert systems
- Content aggregation platforms
- Embedding it into your site (e.g., Wordpress)
- Automated publishing workflows (e.g., Zapier)
The feed updates automatically when a new edition is published. No additional configuration is required.
Alternative Integration: H5mag API
For more advanced use cases, you can access your publication’s data directly via the H5mag API. This allows full programmatic access to project and edition metadata, including article listings, tags, publish dates, and more.
To retrieve data for a specific project, use the following endpoint: GET https://yourpublication.h5mag.com/api/1/project.json
The response includes project metadata, all editions, and optionally their articles. A sample response contains:
title
– Project titledomain
– Primary domaineditions[]
– A list of published editions, each with title, path, screenshot, and descriptionlatest_edition
– A shortcut to the most recent edition
Example Request
curl --request GET \
--url https://yourpublication.h5mag.com/api/1/project.json \
--header 'Accept: application/json' \
--header 'Authenticate: YOUR_API_KEY'
For full API reference, visit the H5mag API documentation.