# Retrieve Statistics https://api-docs.lumar.io/docs/protect/statistics/retrieve-automate-statistics The following query retrieve the automate statistics for a given account, by providing the account id in `accountId` argument: ```graphql query GetAccountAutomateStatistics($accountId: ObjectID!) { getAutomatorAccountStatistics(accountId: $accountId) { testSuitesCount buildsCount testsPerformedCount passedTestPercentage warnedTestPercentage failedTestPercentage averageUrlsCrawledPerDay } } ```