Docs
Dashboard
SEO Optimization

quality_check

Perform comprehensive pre-publish quality assurance

Parameters

ParameterTypeRequiredDefaultDescription
contentstring
Optional
Full content to review. Can review last created content if not provided.
check_typestring
Optional
fullType: 'full', 'seo-only', 'grammar-only', 'brand-only'.

Example

Run full quality check:

Request

{
  "check_type": "full"
}

Response

{
  "overall_score": 85,
  "checks": {
    "grammar": {
      "score": 95,
      "issues": [
        { "type": "typo", "text": "teh", "suggestion": "the", "line": 42 }
      ]
    },
    "seo": {
      "score": 82,
      "issues": [
        { "type": "missing", "item": "meta description too short" }
      ]
    },
    "brand": {
      "score": 90,
      "issues": []
    },
    "accessibility": {
      "score": 78,
      "issues": [
        { "type": "warning", "item": "images missing alt text" }
      ]
    }
  },
  "ready_to_publish": true,
  "recommendations": [
    "Fix the typo on line 42",
    "Expand meta description to 150+ characters",
    "Add alt text to images"
  ]
}

Tips

Best Practices

  • Run before publishing any content
  • 'full' check covers all aspects
  • Use 'seo-only' for quick SEO validation
  • Grammar check uses advanced language models

Related Tools