Quickstart
Sign up → create a workspace → publish a post → embed (5 minutes).
1) Sign in
Go to /auth/login and request a magic link.
2) Create a workspace
In the dashboard, create a Project (workspace). Each project gets its own API key and posts.
3) Create your first post
Open the project → Posts → New.
Publishing & scheduling
- Draft:
isPublished = false - Published now:
isPublished = trueandpublishedAt <= now() - Scheduled:
isPublished = trueandpublishedAt > now()
4) Embed on any website
Add a container and the embed script:
<div id="nanoblog"></div>
<script
src="/embed.js"
data-api-key="YOUR_API_KEY"
data-target="#nanoblog">
</script>