Skip to content

Introduction

This guide will help you integrate our powerful AI-powered blog generation capabilities into your applications.

blogz.ai provides a RESTful API that allows you to programmatically generate high-quality blog posts using advanced AI technology.

  1. Get Your API Key: Navigate to your dashboard to generate an API key
  2. Authenticate: Use your API key to authenticate requests
  3. Start Building: Explore our API endpoints and start creating content

To use the blogz.ai API, you need to generate an API key from your dashboard.


Access to the Blogz API is exclusively available to users with an active subscription, starting from the Basic plan. Ensure your account has an active subscription before attempting to use the API.

Furthermore, please be aware that each blog post successfully created via the API will count towards the usage limits defined by your subscribed package. Monitor your usage to stay within your plan’s boundaries.

Additionally, certain advanced API features, such as providing custom text for parameters like "toneStyle" or "targetAudience" using the "customValue" field, are available exclusively to users on the Premium plan.

For detailed information on subscription plans and their associated limits, please check our pricing models.


Include your API key in the Authorization header:

Terminal window
curl -X POST {API_ENDPOINTS.BLOGS.CREATE} \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"blogParams": {
"language": {"name": "English", "value": "en"}
other parameters...
}
}'