Blogging Platform + Public API
Write. Share. Connect.
Post publicly to build an audience, or keep some writing private — either way, every post is also reachable through your own authenticated API key. Pull your blogs into a portfolio site, a script, or anything else you build. Your writing, everywhere you need it.
Highlights
Recent Blogs
View AllFree to Write. Optional to Go Further.
Reading and writing — public or private — is free for everyone, forever. Professional adds the ability to publish through the API itself.
User
$0 forever
- Unlimited public & private posts
- Follow, comment, and react
- Your own API key
- Read your own posts through the API
Professional
$25/yr
or $3/mo
- Everything in User
- Create and edit posts through the API
- A "Pro" badge on your profile and posts
Your Blog. Your API.
Every account gets an API key. Use it to pull your own blogs — public and private both — into a portfolio site, a script, or anything else you build. Views, likes, and comment counts come along with each post, joined from the database automatically.
It's authenticated and scoped strictly to your own account — there's no way to pull anyone else's blogs through it, public or private. Your writing stays on True Blogger API; the API just lets you reuse it elsewhere.
Request
curl "https://your-deployment-domain/api/v1/me" \
-H "Authorization: Bearer lba_your_key_here"Response
{
"user": { "username": "jordanb", ... },
"blogs": [
{
"title": "Getting Started with JavaScript Closures",
"visibility": "public",
"viewCount": 15,
"likeCount": 4,
"commentCount": 2
}
]
}