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

Loading available models...

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": "gpt-4o",
"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: 'gpt-4o',
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: 'gpt-4o',
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

Loading interactive playground...

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.