curl -X POST \
  <BASE_URL>/seo-optimize \
  -H 'Content-Type: application/json' \
  -d '{
    "url": "https://example-website-url.com"
    }'

{
	"optimization": {
        "keywords": "This is the focused meta keyword",
        "title": "This is the meta title",
		"description": "This is the meta description"	
    }
}
url
string
This is the url of your website you want to optimize. You either have to pass this or website_copy.

Response

keyword
string
This is the keyword generated for your page.
title
string
This is the generated title for your page.
description
string
This is the generated description for your page.
curl -X POST \
  <BASE_URL>/seo-optimize \
  -H 'Content-Type: application/json' \
  -d '{
    "url": "https://example-website-url.com"
    }'

{
	"optimization": {
        "keywords": "This is the focused meta keyword",
        "title": "This is the meta title",
		"description": "This is the meta description"	
    }
}