Skip to main content

Account

Represents a Mention account with quota, statistics, and user information.
id
string
required
Unique identifier for the account
name
string
Account owner’s name
email
string
Account email address
company
string
Company name associated with the account
plan
string
Current subscription plan name
quota
object
Account quota and limits
stats
object
Account usage statistics
timezone
string
Account timezone (e.g., “America/New_York”)
language
string
Preferred language code (e.g., “en”)
features
array
List of enabled feature flags for the account
is_admin
boolean
default:"false"
Whether the account has admin privileges
subscription_expires_at
string
ISO 8601 timestamp when the subscription expires
created_at
string
ISO 8601 timestamp when the account was created
updated_at
string
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"
}

Build docs developers (and LLMs) love