Quickstart

Generate your first AI-optimized blog post with Waldium. This guide shows you how to create content through both the user interface and API, so you can choose the approach that works best for your workflow.

Generate a post through the UI

The easiest way to get started is through the Waldium dashboard. Here's how to create your first AI-generated blog post:

  1. Create a new post - Click "Create Post" in your dashboard
  2. Enter a topic - Add a title like "The Future of AI in Content Marketing"
  3. Generate content - Click "Generate Content" and choose your style, tone, and length
  4. Review and publish - Edit the generated content if needed, then publish
Screenshot of the content generation modal showing style, tone, and length options

Generate a post through the API

You can accomplish the same thing programmatically using the API. Here's how to generate a blog post with a simple API call:

POST
/api/v1/posts/generate
curl -X POST https://api.waldium.com/api/v1/posts/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "topic": "The Future of AI in Content Marketing",
    "style": "professional",
    "length": "medium",
    "tone": "informative"
  }'

The API will return a generated blog post that you can then publish, edit, or use in your application.

What's next?

Great! You've generated your first AI-optimized blog post. Here are some next steps to explore Waldium's full capabilities:

Was this page helpful?