API - Get LIVE Web Crawler Stats
Get LIVE Web Crawler Stats
Get real-time statistics for your web crawler: pages crawled, pages queued, errors, traffic used, and more.
Endpoint
GET https://opensolr.com/solr_manager/api/get_crawl_stats
Parameters
| Parameter | Status | Description |
|---|---|---|
email | Required | Your Opensolr registration email address |
api_key | Required | Your Opensolr API key |
core_name | Required | The name of the index you wish to get live crawler stats for |
Code Examples
cURL
curl -s "https://opensolr.com/solr_manager/api/get_crawl_stats?email=YOUR_EMAIL&api_key=YOUR_API_KEY&core_name=my_solr_core"
PHP
$params = http_build_query([ 'email' => 'YOUR_EMAIL', 'api_key' => 'YOUR_API_KEY', 'core_name' => 'my_solr_core', ]); $response = file_get_contents("https://opensolr.com/solr_manager/api/get_crawl_stats?{$params}"); $stats = json_decode($response, true); print_r($stats);
Python
import requests response = requests.get("https://opensolr.com/solr_manager/api/get_crawl_stats", params={ "email": "YOUR_EMAIL", "api_key": "YOUR_API_KEY", "core_name": "my_solr_core", }) stats = response.json() print(stats)
Related Documentation
Need help with the Opensolr Web Crawler? We are here to help.
Contact Support