FLASH SALE: 50% OFF all content generation packages! View Pricing
Learn how to start generating content with InstaPress API
Sign up for an InstaPress account to get your API key and user ID.
From your dashboard, you'll need two things:
Try this simple cURL command to generate your first article:
curl -X POST https://api.instapress.ai/generate-article?user_id=YOUR_USER_ID \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"topic": "Getting Started with AI"
}'
The API will return a JSON response with your generated content:
{
"success": true,
"content": "<article>Your generated content will appear here...</article>"
}
All API requests require a valid API key in the Authorization header using Bearer token format.
Generate articles, blog posts, and news content with custom parameters.
All content is returned as HTML, ready to be published on WordPress.