DocsGetting Started
IntroductionGetting Started
Welcome to AI Blog Studio! This guide will help you get up and running in minutes.
1. Create an Account
First, sign up for a free account at AI Blog Studio. You'll get 10 free credits to try out all features.
2. Get Your API Key
Navigate to Settings → API Keys in your dashboard to generate your API key. Keep this key secure and never expose it in client-side code.
Important
Your API key grants full access to your account. Treat it like a password.
3. Make Your First Request
Use the following code to generate your first AI-powered blog post:
cURL
curl -X POST https://api.aiblogstudio.com/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"topic": "The Future of AI in Content Creation",
"industry": "Technology",
"tone": "professional",
"length": "medium"
}'4. Explore the Response
A successful request returns a complete blog post with title, content, meta description, and more:
Response
{
"id": "blog_abc123",
"title": "The Future of AI in Content Creation",
"content": "Artificial intelligence is revolutionizing...",
"meta_description": "Discover how AI is transforming...",
"tags": ["ai", "content", "technology"],
"reading_time": 5,
"created_at": "2025-01-15T10:30:00Z"
}