Admin Panel

API Configuration

Quick Actions

Create New Post

All Posts

No posts yet

API Usage Example

# Python
from geotasker_blog import BlogClient

client = BlogClient("your-api-key")
post = client.create_post(
    title="My Post",
    blocks=[
        {"type": "text", "content": "Hello World"},
        {"type": "image", "content": {"url": "..."}}
    ]
)