cURL
curl --request GET \ --url https://api.entityml.com/api/v1/stats
{ "total_api_requests": 123, "unique_users": 123, "available_markets": 123 }
Return system-wide API usage and market stats.
Documentation IndexFetch the complete documentation index at: https://docs.entityml.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.entityml.com/llms.txt
Use this file to discover all available pages before exploring further.
from entityml import EntityMLClient client = EntityMLClient() stats = client.analytics.get_system_stats() print(stats)
{ "total_api_requests": 12840, "unique_users": 42, "available_markets": 2475 }