Grafana Plugins Scraper avatar

Grafana Plugins Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Grafana Plugins Scraper

Grafana Plugins Scraper

Scrape Grafana Plugin Catalog - search 300+ plugins by name/type or fetch specific plugin details. Returns metadata including downloads, author, version, signature status, keywords, and links.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Extract structured data from the Grafana Plugin Catalog — download counts, author details, version history, signature status, keywords, and more. Supports searching the full catalog or fetching specific plugins by slug.

What You Get

Each scraped plugin record contains:

FieldDescription
pluginIdNumeric plugin ID
slugUnique plugin slug (e.g. prometheus, grafana-clock-panel)
nameDisplay name
descriptionShort description
versionLatest published version
typePlugin type: datasource, panel, or app
authorAuthor name and URL
keywordsTags associated with the plugin
linksWebsite, download, and source URLs
downloadsTotal download count
verifiedWhether Grafana Labs verified this plugin
signatureStatusSignature type (grafana, commercial, community)
screenshotUrlsScreenshot image paths (detail mode)
readmeFull README content (detail mode)
createdAtPlugin creation date
updatedAtLast update date
recordTypeAlways grafana_plugin
scrapedAtTimestamp of when the record was scraped

Input

Search and filter all plugins in the Grafana Plugin Catalog.

{
"mode": "search",
"query": "prometheus",
"pluginType": "datasource",
"maxItems": 50
}
FieldTypeDescription
querystringText to match against name, slug, description, and keywords
pluginTypeselectFilter by type: panel, datasource, app, or leave empty for all
maxItemsintegerMaximum records to return (default: 100, max: 10000)

Mode: getBySlug

Fetch full details for specific plugins by their slug identifier.

{
"mode": "getBySlug",
"slugs": ["prometheus", "grafana-clock-panel", "grafana-k8s-app"]
}
FieldTypeDescription
slugsarrayList of plugin slugs to fetch
maxItemsintegerMaximum records to return

Example Output

{
"pluginId": 70,
"slug": "prometheus",
"name": "Prometheus",
"description": "Open source time series database & alerting",
"version": "5.0.0",
"type": "datasource",
"author": {
"name": "Grafana Labs",
"url": "https://grafana.org"
},
"keywords": ["prometheus", "monitoring", "tsdb"],
"links": {
"website": "https://grafana.com/plugins/prometheus",
"download": "https://grafana.com/plugins/prometheus/versions/5.0.0/download",
"sourceUrl": "https://github.com/grafana/grafana"
},
"downloads": 1553,
"verified": false,
"signatureStatus": "grafana",
"createdAt": "2016-03-31T13:10:24.000Z",
"updatedAt": "2025-04-10T10:38:23.000Z",
"recordType": "grafana_plugin",
"scrapedAt": "2026-05-30T12:00:00+00:00"
}

Use Cases

  • Plugin discovery — find the best Grafana plugins for monitoring, visualization, or alerting
  • Market research — analyze download trends and popularity across plugin types
  • Dependency auditing — track which plugins are verified or have commercial signatures
  • Dashboard automation — programmatically select plugins based on type and keyword criteria
  • Competitive analysis — compare plugin versions, update frequencies, and author activity

FAQ

Does this require API keys or authentication? No. The Grafana Plugin Catalog API is fully public.

How many plugins are in the catalog? The catalog contains approximately 300–400 plugins. You can retrieve all of them with a single search (no query filter).

What is the difference between search and getBySlug modes? search fetches the complete catalog and filters client-side — ideal for browsing or bulk exports. getBySlug fetches individual plugin detail pages, which include README content and screenshot URLs.

What plugin types are available? Three types: datasource (data source integrations), panel (visualization panels), and app (full application plugins).

How do I find a plugin's slug? Visit grafana.com/plugins, open any plugin page, and copy the last segment of the URL (e.g., prometheus from grafana.com/plugins/prometheus).

Is there rate limiting? The public API is generally permissive. The scraper uses polite delays between requests.