curl -X POST \
     -H "X-API-Key: YOUR_API_KEY_HERE" \
     -H "Content-Type: application/json" \
     -d '{
        "url": "http://example.com",
        "guidelines": "This is the CTA guidelines."
        }' \
    
     <BASE_URL>/cta-text

{
	"cta_text": {
		"cta1": {
			"button": "Sign up now",
			"header": "Sign up for our Meal Prep Service",
			"text": "Enjoy chef-crafted fresh, healthy, and ready-to-eat meals throughout the week. Choose the one which fits your goals and lifestyle."
		},
		"cta2": {
			"button": "Choose your plan",
			"header": "Get Started with Houston Meal Prep",
			"text": "Choose from our variety of meal plans. Free delivery all over Houston. Starting at $12.99/Meal."
		},
		"cta3": {
			"button": "Order Now",
			"header": "Boost Your Health with Our Pineapple Ginger Shot",
			"text": "Try our powerful immune and digestive system booster. Free delivery all over Houston."
		}
	}
}
url
string

This is the CTA url where you want the user to be redirected to when they click on the button.

guidelines
string

This is the CTA guidelines.

Response

button
string

This is the button text.

header
string

This is the header text.

text
string

This is the body text.

curl -X POST \
     -H "X-API-Key: YOUR_API_KEY_HERE" \
     -H "Content-Type: application/json" \
     -d '{
        "url": "http://example.com",
        "guidelines": "This is the CTA guidelines."
        }' \
    
     <BASE_URL>/cta-text

{
	"cta_text": {
		"cta1": {
			"button": "Sign up now",
			"header": "Sign up for our Meal Prep Service",
			"text": "Enjoy chef-crafted fresh, healthy, and ready-to-eat meals throughout the week. Choose the one which fits your goals and lifestyle."
		},
		"cta2": {
			"button": "Choose your plan",
			"header": "Get Started with Houston Meal Prep",
			"text": "Choose from our variety of meal plans. Free delivery all over Houston. Starting at $12.99/Meal."
		},
		"cta3": {
			"button": "Order Now",
			"header": "Boost Your Health with Our Pineapple Ginger Shot",
			"text": "Try our powerful immune and digestive system booster. Free delivery all over Houston."
		}
	}
}