Get the authenticated user's plan information and usage statistics
Output
Encodingapplication/json
No description available.
No description available.
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
Sending request...
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"currentPlan",
"limits",
"usage"
],
"properties": {
"usage": {
"ref": "#usageStats",
"type": "ref"
},
"limits": {
"ref": "#planLimits",
"type": "ref"
},
"currentPlan": {
"ref": "#currentPlan",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Get the authenticated user's plan information and usage statistics"
}
Current plan information.
Properties
Localized plan display names
Plan ID
maxLength: 100 bytes
Whether the plan is currently active
Internal plan name
maxLength: 200 bytes
Plan tier (FREE, BASIC, STANDARD, PREMIUM)
maxLength: 50 bytes
Plan expiration date (ISO 8601)
maxLength: 100 bytes
View raw schema
{
"type": "object",
"required": [
"id",
"tier",
"name",
"displayName",
"isActive"
],
"properties": {
"id": {
"type": "string",
"maxLength": 100,
"description": "Plan ID"
},
"name": {
"type": "string",
"maxLength": 200,
"description": "Internal plan name"
},
"tier": {
"type": "string",
"maxLength": 50,
"description": "Plan tier (FREE, BASIC, STANDARD, PREMIUM)"
},
"isActive": {
"type": "boolean",
"description": "Whether the plan is currently active"
},
"validUntil": {
"type": "string",
"format": "datetime",
"maxLength": 100,
"description": "Plan expiration date (ISO 8601)"
},
"displayName": {
"type": "unknown",
"description": "Localized plan display names"
}
},
"description": "Current plan information."
}
Plan limits.
Properties
Whether markdown formatting is supported
Maximum days in advance to schedule
Maximum concurrent pending posts
Minimum interval between scheduled posts (minutes)
Whether thread posts are enabled
Monthly video processing minutes
Whether video uploads are enabled
View raw schema
{
"type": "object",
"required": [
"monthlyPostsLimit",
"pendingPostsLimit",
"maxScheduleDays",
"scheduleIntervalMinutes",
"maxImagesPerPost",
"threadPostsLimit"
],
"properties": {
"threadPosts": {
"type": "boolean",
"description": "Whether thread posts are enabled"
},
"videoUpload": {
"type": "boolean",
"description": "Whether video uploads are enabled"
},
"maxImageSizeMb": {
"type": "integer",
"description": "Maximum image size (MB)"
},
"maxVideoSizeMb": {
"type": "integer",
"description": "Maximum video size (MB)"
},
"markdownSupport": {
"type": "boolean",
"description": "Whether markdown formatting is supported"
},
"maxScheduleDays": {
"type": "integer",
"description": "Maximum days in advance to schedule"
},
"maxImagesPerPost": {
"type": "integer",
"description": "Maximum images per post"
},
"threadPostsLimit": {
"type": "integer",
"description": "Maximum posts per thread"
},
"monthlyPostsLimit": {
"type": "integer",
"description": "Maximum posts per month"
},
"pendingPostsLimit": {
"type": "integer",
"description": "Maximum concurrent pending posts"
},
"scheduleIntervalMinutes": {
"type": "integer",
"description": "Minimum interval between scheduled posts (minutes)"
},
"videoProcessingMinutesMonthly": {
"type": "integer",
"description": "Monthly video processing minutes"
}
},
"description": "Plan limits."
}
Usage statistics.
Properties
API requests in current hour
Last time usage was updated (ISO 8601)
maxLength: 100 bytes
End of current monthly period (ISO 8601)
maxLength: 100 bytes
Start of current monthly period (ISO 8601)
maxLength: 100 bytes
Number of posts this month
Current number of pending posts
View raw schema
{
"type": "object",
"required": [
"pendingPostsCount",
"monthlyPostsCount",
"monthlyPeriodStart",
"monthlyPeriodEnd",
"lastUpdated"
],
"properties": {
"lastUpdated": {
"type": "string",
"format": "datetime",
"maxLength": 100,
"description": "Last time usage was updated (ISO 8601)"
},
"storageUsedMb": {
"type": "integer",
"description": "Storage used (MB)"
},
"monthlyPeriodEnd": {
"type": "string",
"format": "datetime",
"maxLength": 100,
"description": "End of current monthly period (ISO 8601)"
},
"monthlyPostsCount": {
"type": "integer",
"description": "Number of posts this month"
},
"pendingPostsCount": {
"type": "integer",
"description": "Current number of pending posts"
},
"monthlyPeriodStart": {
"type": "string",
"format": "datetime",
"maxLength": 100,
"description": "Start of current monthly period (ISO 8601)"
},
"apiRequestsThisHour": {
"type": "integer",
"description": "API requests in current hour"
}
},
"description": "Usage statistics."
}