Skip to main content
GET
/
content-gap
/
stats
Content Gap Stats
curl --request GET \
  --url https://server.promptwatch.com/api/v2/content-gap/stats \
  --header 'X-API-Key: <api-key>'
{
  "totalPromptsWithCoverage": 123,
  "totalPromptsWithoutCoverage": 123,
  "averageCoverageScore": 123,
  "distribution": {
    "low": 123,
    "medium": 123,
    "good": 123,
    "excellent": 123
  },
  "byPromptType": [
    {
      "category": "ORGANIC",
      "averageScore": 123,
      "count": 123,
      "totalPrompts": 123
    }
  ],
  "byIntentType": [
    {
      "category": "BRANDED",
      "averageScore": 123,
      "count": 123,
      "totalPrompts": 123
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Get yours from the Promptwatch dashboard under Settings > API Keys.

Query Parameters

promptTypes

Filter by prompt types. Repeat for multiple

Available options:
ORGANIC,
BRAND_SPECIFIC,
COMPETITOR_COMPARISON

Response

Default Response

totalPromptsWithCoverage
number
required
totalPromptsWithoutCoverage
number
required
averageCoverageScore
number | null
required
distribution
object
required
byPromptType
object[]
required
byIntentType
object[]
required