FLASH SALE: 50% OFF all content generation packages! View Pricing

InstaPress AI

Getting Started

Learn how to start generating content with InstaPress API

1. Create an Account

Sign up for an InstaPress account to get your API key and user ID.

2. Get Your Credentials

From your dashboard, you'll need two things:

  • Your API Key - Used for authentication
  • Your User ID - Required for all API requests

3. Make Your First Request

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

4. Handle the Response

The API will return a JSON response with your generated content:


                  {
  "success": true,
  "content": "<article>Your generated content will appear here...</article>"
}
                

Features & Limitations

Authentication

All API requests require a valid API key in the Authorization header using Bearer token format.

Content Types

Generate articles, blog posts, and news content with custom parameters.

Response Format

All content is returned as HTML, ready to be published on WordPress.

Next Steps