Skip to content

Authentication Overview

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...
}
}'