Splunkbase Scraper
Pricing
from $3.00 / 1,000 results
Splunkbase Scraper
Scrape Splunkbase - Splunk's official app marketplace. Search apps by query or category, or fetch specific apps by ID. Returns title, description, downloads, version, author, rating, categories, compatible Splunk versions, license, and more.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Crawler Bros
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
9 days ago
Last modified
Categories
Share
Scrape Splunkbase — Splunk's official app and add-on marketplace. Search apps by query or category, or fetch specific apps by ID. Returns title, description, download count, version, author, categories, compatible Splunk versions, license info, compliance flags, and more.
What this actor does
- Two modes:
search(browse/filter by query + category) andgetById(lookup by app ID) - Search filters: free-text query, category filter (25 categories)
- Enriched metadata: per-app detail and release history fetched automatically
- Real data: download counts, version, compatible Splunk versions, compliance flags (FedRAMP, FIPS), cloud compatibility
- Empty fields omitted — no nulls in output
Output per app
| Field | Description |
|---|---|
id | Splunkbase numeric app ID (uid) |
appid | App identifier string (e.g. Splunk_TA_aws) |
title | App display title |
description | Full app description |
appType | App type (app or addon) |
appAuthor | Developer/vendor name |
categories | Array of category strings |
downloads | Total download count |
version | Latest version string |
splunkVersions | Compatible Splunk product versions |
cimVersions | Compatible CIM versions |
licenseName | License type |
licenseUrl | License URL |
access | Access level (unrestricted or restricted) |
cloudCompatible | Whether app is Splunk Cloud compatible |
fedrampValidation | FedRAMP validation status |
fipsCompatibility | FIPS 140-2 compliant |
archiveStatus | App status (live, flagged, etc.) |
isArchived | Whether app is archived |
installMethodSingle | Install method for single instance |
installMethodDistributed | Install method for distributed deployment |
createdAt | Creation date (ISO 8601) |
updatedAt | Last update date (ISO 8601) |
publishedAt | Publication date (ISO 8601) |
iconUrl | App icon CDN URL |
storeUrl | Splunkbase page URL |
sourceUrl | Splunkbase canonical URL |
recordType | Always "app" |
scrapedAt | UTC ISO scrape timestamp |
Input
| Field | Type | Default | Description |
|---|---|---|---|
mode | string | search | search or getById |
query | string | aws | Search query (mode=search) |
category | select | — | Filter by category (mode=search) |
appIds | array | — | Integer app IDs (mode=getById) |
maxItems | integer | 100 | Hard cap on results (1–10000) |
Categories available
Artificial Intelligence, Business Analytics, DevOps, Directory Service, Email, Endpoint, Firewall, Generic, Identity Management, Information, Investigative, IoT & Industrial Data, IT Operations, Network Access Control, Network Device, Network Security, Reputation, Sandbox, Security, Fraud & Compliance, SIEM, Threat Intel, Ticketing, Utilities, Virtualization, Vulnerability Scanner
Example inputs
Search for AWS-related apps
{"mode": "search","query": "aws","maxItems": 20}
Browse Security apps
{"mode": "search","category": "Security, Fraud & Compliance","maxItems": 50}
Get specific apps by ID
{"mode": "getById","appIds": [1876, 3435]}
Example output record
{"id": 1876,"appid": "Splunk_TA_aws","title": "Splunk Add-on for Amazon Web Services (AWS)","description": "Comprehensive AWS data integration for Splunk...","appType": "addon","appAuthor": "Splunk LLC","categories": ["IT Operations", "Security, Fraud & Compliance"],"downloads": 1150943,"version": "8.1.2","splunkVersions": ["10.4", "10.3", "10.2", "10.1", "10.0"],"licenseName": "Splunk General Terms","cloudCompatible": true,"fedrampValidation": "yes","fipsCompatibility": true,"storeUrl": "https://splunkbase.splunk.com/app/1876/","recordType": "app","scrapedAt": "2026-05-30T10:00:00+00:00"}
FAQ
Does this require a Splunk account?
No. Splunkbase's public REST API (/api/v1/app/) is accessible without authentication for public apps.
Does it use proxies? No proxies are needed. The Splunkbase API returns JSON from standard datacenter IPs.
What's the difference between app and addon?
Splunk "apps" are full applications with dashboards and UI. "Add-ons" are technology add-ons (TAs) that provide data inputs and field extractions without a standalone UI.
How do I find an app's ID?
Look at the Splunkbase URL: splunkbase.splunk.com/app/1876/ — the number is the ID.
How many apps can I scrape?
Splunkbase has 3,000+ apps. Set maxItems up to 10,000 for a full crawl.
Are rating/review fields included? The API returns rating data when available. Many apps have no reviews, so these fields are omitted when empty.