Discover/Sushii API
live

Sushii APIsecurity.sushii.dev

Search and retrieve CVE vulnerability data including CVSS scores, severity ratings, affected vendors/products, CWE weaknesses, and CISA KEV status.

This API takes change requests — .
Endpoint health
verified 20h ago
search_cves
get_cve
1/2 passing latest checkself-healing
Endpoints
2
Updated
21h ago

What is the Sushii API?

The security.sushii.dev API provides access to CVE vulnerability intelligence through 2 endpoints, returning up to 12 fields per record including CVSS v3 scores, severity levels, affected vendors and products, CWE identifiers, and CISA Known Exploited Vulnerabilities (KEV) status. The get_cve endpoint retrieves full details for a single CVE by ID, while search_cves lets you filter across the full catalog by keyword, severity, sort order, and KEV membership.

Try it
When true, show only CVEs in the CISA Known Exploited Vulnerabilities catalog.
Page number (1-based).
Sort order for results.
Free-text search matching CVE ID, vendor, product, CWE, or description.
Filter by CVSS severity level. Omitted returns all severities.
api.parse.bot/scraper/33379177-74b7-46c8-82d9-af320fc6f767/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/33379177-74b7-46c8-82d9-af320fc6f767/search_cves?kev=true&page=1&sort=published&query=microsoft&severity=critical' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace security-sushii-dev-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: CveIntel SDK — bounded, re-runnable; every call capped."""
from parse_apis.security_sushii_dev_api import CveIntel, Severity, Sort, CveNotFound

client = CveIntel()

# Search for recent critical vulnerabilities in the KEV catalog
for cve in client.cve_summaries.search(severity=Severity.CRITICAL, kev=True, limit=3):
    print(cve.cve_id, cve.severity, cve.score, cve.published)

# Drill down: take the first Microsoft Edge CVE and get full details
item = client.cve_summaries.search(query="microsoft edge", sort=Sort.PUBLISHED, limit=1).first()

try:
    full = item.details()
    print(full.cve_id, full.cvss_vector, full.vendors, full.products)
except CveNotFound as e:
    print(f"CVE gone: {e.cve_id}")

print("exercised: cve_summaries.search, CveSummary.details")
All endpoints · 2 totalmissing one? ·

Search and filter CVE vulnerabilities by keyword, severity, sort order, and KEV status. Results are paginated with 25 items per page, auto-iterated by the SDK. Keyword search matches CVE ID, vendor, product, CWE, or description text.

Input
ParamTypeDescription
kevbooleanWhen true, show only CVEs in the CISA Known Exploited Vulnerabilities catalog.
pageintegerPage number (1-based).
sortstringSort order for results.
querystringFree-text search matching CVE ID, vendor, product, CWE, or description.
severitystringFilter by CVSS severity level. Omitted returns all severities.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "items": "array of CVE summary objects",
    "total": "total number of matching vulnerabilities",
    "total_pages": "total number of pages available"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "score": 8.4,
          "cve_id": "CVE-2026-0487",
          "is_kev": false,
          "severity": "HIGH",
          "published": "Jul 14, 2026",
          "description": "SAProuter on Microsoft Windows allows an unauthenticated attacker to load library (DLL) files from an untrusted location..."
        }
      ],
      "total": 81,
      "total_pages": 4
    },
    "status": "success"
  }
}

About the Sushii API

Endpoints and Parameters

search_cves accepts a free-text query parameter that matches against CVE IDs, vendor names, product names, CWE identifiers, and description text. Results can be narrowed by severity (CRITICAL, HIGH, MEDIUM, LOW) and filtered to CISA KEV entries only using the kev boolean. Results are paginated at 25 items per page; the total and total_pages fields in the response let you iterate programmatically, and the Parse SDK handles auto-iteration. Each item in the items array is a CVE summary object suitable for building dashboards or alert feeds.

Full CVE Detail

get_cve takes a single cve_id string in CVE-YYYY-NNNNN format and returns the complete record: the numeric CVSS v3 score (or null if unscored), the cvss_vector string, severity enum, published and modified timestamps, arrays of vendors and products, cwes array, and a references array of advisory and patch URLs. This gives you everything needed to triage a specific vulnerability or cross-reference it against an internal asset inventory.

Coverage Notes

The API reflects the CVE Intelligence Dashboard at security.sushii.dev, which tracks CVSS v3.1 scoring. CVEs that have not yet been scored will return null for score and UNKNOWN for severity. The CISA KEV filter in search_cves surfaces only those CVEs confirmed to be actively exploited in the wild according to CISA's catalog, making it useful for prioritization workflows.

Reliability & maintenanceVerified

The Sushii API is a managed, monitored endpoint for security.sushii.dev — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when security.sushii.dev changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official security.sushii.dev API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
20h ago
Latest check
1/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Alert security teams when new CRITICAL or HIGH severity CVEs affect a specific vendor or product they maintain
  • Build a KEV-only feed by filtering search_cves with kev: true to track actively exploited vulnerabilities
  • Enrich internal asset inventories by cross-referencing vendors and products fields from get_cve against deployed software
  • Generate weekly CVE digest reports filtered by severity level using the severity parameter in search_cves
  • Pull full CVSS vector strings and numeric scores from get_cve to feed into risk-scoring pipelines
  • Identify all CVEs associated with a specific CWE weakness type via keyword search in search_cves
  • Track patch and advisory URLs from the references array to automate remediation ticket creation
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does security.sushii.dev have an official developer API?+
No official public API is documented at security.sushii.dev. The site is a CVE intelligence dashboard intended for browser use. This Parse API provides programmatic access to the same vulnerability data.
What does the `search_cves` endpoint return, and how does pagination work?+
It returns a page number, total count, total_pages count, and an items array of CVE summary objects. Each page contains up to 25 items. You can pass the page parameter to iterate manually, or use the Parse SDK which auto-iterates across pages.
What does the `kev` filter in `search_cves` actually do?+
Setting kev: true restricts results to CVEs that appear in the CISA Known Exploited Vulnerabilities catalog — vulnerabilities with confirmed active exploitation. Omitting the parameter returns all CVEs regardless of KEV status.
Does the API expose CVE data for CVSS v2 scores or only v3?+
The get_cve endpoint returns a CVSS v3.1 vector string (cvss_vector) and a v3 numeric score. CVSS v2 scores are not currently exposed. You can fork this API on Parse and revise it to add a v2 score field if the source makes that data available.
Is CPE (Common Platform Enumeration) data available for affected products?+
Not currently. The API exposes vendors and products as plain string arrays, without structured CPE identifiers. You can fork this API on Parse and revise it to add CPE data if it becomes available in the source.
Page content last updated . Spec covers 2 endpoints from security.sushii.dev.
Related APIs in Developer ToolsSee all →
crt.sh API
Search for SSL/TLS certificates across public transparency logs by domain, fingerprint, serial number, or public key, and retrieve detailed certificate information including issuer, validity dates, and certificate chain details. Monitor certificate issuance for domains you care about to track security changes and detect unauthorized certificates.
artificialanalysis.ai API
Compare and rank LLM models and providers across performance benchmarks, then dive into detailed specifications for any model to find the best fit for your needs. Discover performance metrics for specialized AI systems handling speech, images, and video, plus benchmark data for different hardware configurations.
python.org API
Access comprehensive Python release information including downloads, versions, and supported operating systems, plus stay updated with the latest Python news and events. Search across Python.org's resources and browse release files, details, and the FTP index all in one place.
nvidia.com API
nvidia.com API
lucide.dev API
Browse and download thousands of Lucide icons with instant search and category filtering to find exactly what you need. Get SVG files and metadata for each icon to integrate them seamlessly into your projects.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
trends.google.com API
Discover what's trending right now in any country by accessing the top search topics with real-time search volume, growth rates, and related queries. Stay informed on trending categories and see which searches are gaining the most momentum in your target markets.
ask.brave.com API
Ask Brave's AI-powered answer engine to get intelligent responses on any topic complete with cited sources, or use the suggest endpoint to discover relevant information and follow-up questions. Get AI-generated answers that combine web knowledge with source attribution, helping you research topics efficiently and verify information through direct references.