# Usage Statistics > Source: https://scrape.do/documentation/api-response/usage-stats/ Monitor your Scrape.do account usage statistics including API credits, concurrent requests, and monthly request limits. If you want to know usage statistics for your Scrape.do subscription, you can use the following API endpoint: ``` https://api.scrape.do/info?token=API_TOKEN ``` > [!NOTE] > As part of security measures, you can send a maximum of 10 requests per minute to this end-point. When you exceed this limit, you will receive 429 status code. **Result:** ```json { "IsActive": true, // Subscription status "ConcurrentRequest": 40, // Number of concurrent requests "MaxMonthlyRequest": 3500000, // Maximum number of requests per month "RemainingConcurrentRequest": 15, // Remaining number of concurrent requests "RemainingMonthlyRequest": 2565023, // Remaining number of requests per month } ```