Skip to main content

Advertisement Generator

Generate compelling, conversion-focused ad copy for Google Ads and Facebook Ads. Each platform's generator is optimized for specific ad formats, audience targeting, and platform requirements to maximize engagement and ROI.

Supported Platforms

  • Google Ads - Search and display ads with keyword optimization, compelling headlines, and strong calls-to-action
  • Facebook Ads - Social media ads with visual storytelling, audience targeting, and engagement-focused copy

Available Models

Both advertisement generators support major AI models:

  • Anthropic: Claude 3.5 Haiku, Claude 3.5 Sonnet, Claude 3.7 Sonnet, Claude 4 Opus, Claude 4 Sonnet
  • OpenAI: GPT-3.5, GPT-4 Turbo, GPT-4o, GPT-4.1, GPT-5, o1, o3, o4
  • Google: Gemini 1.0 Pro, Gemini 1.5 Flash/Pro, Gemini 2.0/2.5 Flash/Pro
  • Others: Mistral, Meta LLaMA, DeepSeek, Grok 2, Command R

Request Parameters

Field NameTypeDescriptionRequired
typetextPlatform-specific type (see types below)✔️
modeltextAI model identifier✔️
conversationIdtextSame as type value✔️
promptObject.tonestringAd tone (persuasive, urgent, friendly, professional, etc.)✔️
promptObject.languagestringContent language✔️
promptObject.promptstringProduct/service description and target audience✔️

Platform Types

  • CONTENT_GENERATOR_GOOGLE_ADS
  • CONTENT_GENERATOR_FACEBOOK_ADS

Endpoint

Code Examples

curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "CONTENT_GENERATOR_GOOGLE_ADS",
"model": "claude-3-5-sonnet-20240620",
"conversationId": "CONTENT_GENERATOR_GOOGLE_ADS",
"promptObject": {
"tone": "persuasive",
"language": "English",
"prompt": "Premium fitness tracker with 30-day battery life and advanced health monitoring. Target audience: health-conscious professionals aged 25-45 looking to optimize their wellness routine."
}
}'

JavaScript Example

// Google Ads Example
const generateGoogleAd = async () => {
const response = await fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
type: 'CONTENT_GENERATOR_GOOGLE_ADS',
model: 'claude-3-5-sonnet-20240620',
conversationId: 'CONTENT_GENERATOR_GOOGLE_ADS',
promptObject: {
tone: 'persuasive',
language: 'English',
prompt: 'Premium fitness tracker with advanced health monitoring features'
}
})
});

const data = await response.json();
return data;
};

// Facebook Ads Example
const generateFacebookAd = async () => {
const response = await fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
type: 'CONTENT_GENERATOR_FACEBOOK_ADS',
model: 'claude-3-5-sonnet-20240620',
conversationId: 'CONTENT_GENERATOR_FACEBOOK_ADS',
promptObject: {
tone: 'engaging',
language: 'English',
prompt: 'Eco-friendly meal delivery service for busy families'
}
})
});

const data = await response.json();
return data;
};

Interactive Playground

API Playground

https://api.1min.ai/api/features

Generated cURL Command:

curl -X POST "https://api.1min.ai/api/features" \
-H "API-KEY: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "CONTENT_GENERATOR_GOOGLE_ADS",
"model": "claude-3-5-sonnet-20240620",
"conversationId": "CONTENT_GENERATOR_GOOGLE_ADS",
"promptObject": {
"tone": "persuasive",
"language": "English",
"prompt": "Premium fitness tracker with 30-day battery life and advanced health monitoring. Target audience: health-conscious professionals aged 25-45."
}
}'

Platform-Specific Features

  • Search Ad Optimization: Headlines and descriptions optimized for Google search results
  • Keyword Integration: Natural keyword incorporation for better ad relevance
  • Character Limits: Adherence to Google's ad copy character restrictions
  • Call-to-Action Focus: Strong, conversion-driven CTAs
  • Ad Extensions Ready: Copy that works well with sitelinks and callouts

Facebook Ads

  • Visual Storytelling: Copy designed to complement visual content
  • Social Proof Integration: Content that leverages social engagement
  • Audience Targeting: Messaging tailored to Facebook's demographic targeting
  • Engagement Focus: Copy that encourages likes, comments, and shares
  • Mobile Optimization: Content optimized for mobile feed consumption

Best Practices

  • Clear Value Proposition: Highlight unique benefits and competitive advantages
  • Target Audience: Tailor messaging to specific demographics and psychographics
  • Compelling Headlines: Create attention-grabbing headlines that drive clicks
  • Strong CTAs: Include clear, action-oriented calls-to-action
  • A/B Testing Ready: Generate multiple variations for performance testing
  • Compliance: Ensure ad copy meets platform advertising policies

Response Format

Each platform returns ad copy optimized for its specific format requirements, character limits, and audience expectations, including headlines, descriptions, and call-to-action suggestions.