Skip to main content
GET
/
seo-optimization
/
optimize-field
SEO Optimization
curl --request GET \
  --url https://v3-api-beta.snowseo.com/snowseo/v2/seo-optimization/optimize-field \
  --header 'Authorization: Bearer <token>'
Pass in your current meta title, meta description, or heading tags and get back an AI-optimized version. The AI considers your brand context, target audience, and SEO best practices.

Request

fieldType
string
required
The type of field to optimize. One of: title, description, h1Tag, or content.
url
string
required
The page URL being optimized (used for context, e.g., homepage vs. blog post).
currentValue
string
The current value of the field. For metaTitle and metaDescription, pass the text. Leave empty to generate from scratch.
currentJson
string
For h1Tag only — the current heading structure as a JSON string (e.g., {"h1": ["..."], "h2": ["..."]}).
teamData
string
required
JSON string with your brand info: {"name": "Acme", "description": "...", "website": "...", "targetAudience": ["..."]}.

Response

{
  "success": true,
  "optimizedValue": "SnowSEO | Advanced SEO Platform for Marketers to Boost Traffic",
  "fieldType": "title"
}