Skip to main content
Version: 2.2

Get project stats

GEThttps://api.moralis-streams.com/stats

Get the global stats for the account.

Responses
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = Moralis.Streams.getStats({});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"totalWebhooksDelivered": "",
"totalWebhooksFailed": "",
"totalLogsProcessed": "",
"totalTxsProcessed": "",
"totalTxsInternalProcessed": "",
"streams": {
"totalWebhooksDelivered": "",
"totalWebhooksFailed": "",
"totalLogsProcessed": "",
"totalTxsProcessed": "",
"totalTxsInternalProcessed": "",
"streamId": ""
},
"createdAt": "",
"updatedAt": ""
}