get-streak-stats
Analyze WordPress site publishing activity by generating Calendar Heatmap stats using a secure API. Ideal for tracking and visualizing content productivity via site URL, username, password, and site ID.
Instructions
Get stats for Calendar Heatmap showing publishing activity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
password | Yes | WordPress application password | |
siteId | Yes | WordPress site ID | |
siteUrl | Yes | WordPress site URL | |
username | Yes | WordPress username |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"password": {
"description": "WordPress application password",
"type": "string"
},
"siteId": {
"description": "WordPress site ID",
"type": "number"
},
"siteUrl": {
"description": "WordPress site URL",
"format": "uri",
"type": "string"
},
"username": {
"description": "WordPress username",
"type": "string"
}
},
"required": [
"siteUrl",
"username",
"password",
"siteId"
],
"type": "object"
}