Account
Represents a Mention account with quota, statistics, and user information.
Unique identifier for the account
Company name associated with the account
Current subscription plan name
Account quota and limitsShow AccountQuota properties
Maximum number of alerts allowed
Maximum number of mentions allowed
Maximum number of mentions without archive
Maximum number of API calls allowed
Account usage statisticsShow AccountStats properties
Total number of alerts created
Total number of mentions received
Number of unread mentions
Account timezone (e.g., “America/New_York”)
Preferred language code (e.g., “en”)
List of enabled feature flags for the account
Whether the account has admin privileges
ISO 8601 timestamp when the subscription expires
ISO 8601 timestamp when the account was created
ISO 8601 timestamp when the account was last updated
Example
{
"id": "acc_1234567890",
"name": "John Doe",
"email": "[email protected]",
"company": "Example Inc",
"plan": "professional",
"quota": {
"alerts": 100,
"mentions": 100000,
"mentions_without_archive": 10000,
"api_calls": 50000
},
"stats": {
"alerts_count": 15,
"mentions_count": 2847,
"unread_mentions_count": 42
},
"timezone": "America/New_York",
"language": "en",
"features": ["sentiment_analysis", "noise_detection", "api_access"],
"is_admin": false,
"subscription_expires_at": "2026-12-31T23:59:59Z",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2026-03-04T08:15:00Z"
}