Everything you need to get started with ATTRAL AI tools. From quick setup guides to advanced API documentation.
Sign up for a free ATTRAL AI account to get started. No credit card required.
Sign Up NowOnce logged in, navigate to your dashboard and generate your API key. This key will be used to authenticate your requests.
Authorization: Bearer attr_sk_your_api_key_here
Use our REST API to generate content. Here's a simple example using curl:
curl -X POST https://api.attral.ai/v1/blog/create \
-H "Authorization: Bearer attr_sk_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"topic": "AI in Business",
"keywords": ["artificial intelligence", "automation", "productivity"],
"tone": "professional",
"length": "medium"
}'
Generate SEO-optimized blog content with AI.
POST /v1/blog/create
{
"topic": "string (required)",
"keywords": ["string"],
"tone": "professional|casual|friendly|authoritative",
"length": "short|medium|long",
"targetAudience": "string",
"includeImages": boolean,
"seoOptimized": boolean
}
{
"success": true,
"data": {
"title": "string",
"content": "string",
"metaDescription": "string",
"tags": ["string"],
"estimatedReadTime": number,
"wordCount": number,
"seoScore": number,
"suggestions": ["string"]
}
}
Create engaging social media posts for Facebook, Instagram, and YouTube.
POST /v1/social/create
{
"platform": "facebook|instagram|youtube",
"content": "string (required)",
"tone": "professional|casual|engaging|promotional",
"includeHashtags": boolean,
"includeCallToAction": boolean,
"targetAudience": "string",
"keywords": ["string"]
}
{
"success": true,
"data": {
"caption": "string",
"hashtags": ["string"],
"callToAction": "string",
"suggestedPostingTime": "string",
"engagementScore": number,
"characterCount": number,
"suggestions": ["string"]
}
}
Official SDK for JavaScript and Node.js applications.
npm install attral-ai-sdk
Python SDK for easy integration with your Python applications.
pip install attral-ai
Direct HTTP API calls using cURL or any HTTP client.
curl -X POST https://api.attral.ai/v1/...
Our support team is here to help you get the most out of ATTRAL AI.