Hive Public Content API
Complete guide to integrating Hive content into your website, landing page, or newsletter
This handoff guide is meant for people who simply want to pull live Hive content onto a website, landing page, or newsletter. Everything runs against the production host https://api.hivecms.online, and every request uses your workspace's public API key.
Quick Start
Getting Started
Learn about authentication and base URLs
Posts
Browse and fetch individual posts
Tags & Categories
Retrieve tags and categories for filtering
Authors
Get author information and profiles
Workspace Stats
Display workspace statistics
Response Shapes
TypeScript type definitions
Base URL
All API requests are made to:
https://api.hivecms.online/api/publicAuthentication
Replace {API_KEY} in each URL with the key provided to you (or you can issue one from your workspace). Keep it private—even though it's read-only, it maps directly to your workspace.
Headers
None required. The public API is configured for simple GET requests, so you can call it straight from the browser or curl without setting anything special.
What's Next?
- Start with Getting Started to learn about authentication
- Explore the Posts API to fetch content
- Check out Response Shapes for TypeScript types
- Review Troubleshooting if you encounter issues