Skip to main content
validation_url
string
This is your website URL. You must have the Contentify plugin installed on your website and an API key to use this endpoint. The url must start with http:// or https:// and must not end with a slash.
api_key
string
This is your Contentify generated API key.
title
string
This is the title of your landing page. The landing page will mainly be generated from this title.
city
string
Localize your landing page by adding a city like this to the title: “My Title in (Paris)”.
about
string
This is about your business to generate a sales pitch paragraph.
user_webhook_url
string
This is where you want to recieve the notification when the landing page is generated.

Response

description
string
This is the generated paragraph for the landing page.
image
string
This is the generated image for the landing page.
pitch
string
This is the generated sales pitch for the landing page.
curl -X POST \
  <BASE_URL>/landing-page \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "validation_url": "https://yourwebsite.com",
    "api_key": "YOUR_API_KEY",
    "title": "Your title",
    "city": "Your city",
    "about": "About your landing page",
    "user_webhook_url": "https://yourwebsite.com/webhook"
}'

{
	"message": "Task queued for execution",
	"response_id": "12345",
	"task_id": "1234-567"
}