# Security Sushii — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and retrieve detailed information about known vulnerabilities, including severity ratings, CVSS scores, and CISA Known Exploited Vulnerabilities status to stay informed about security threats. Access comprehensive CVE data to assess risks and prioritize patching efforts for your systems.

**Category:** Developer Tools | **Website:** [security.sushii.dev/](https://security.sushii.dev/) | **Docs:** [parse.bot/marketplace/4556dd08-af1a-4693-8948-f975e09a5cd3/security-sushii-dev-api](https://parse.bot/marketplace/4556dd08-af1a-4693-8948-f975e09a5cd3/security-sushii-dev-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-security-sushii-dev-api-4556dd08/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cve

Retrieve full details for a single CVE by its ID, including description, CVSS scoring, affected vendors and products, CWE weaknesses, and reference links.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cve_id` | string | Yes | CVE identifier in format CVE-YYYY-NNNNN (e.g. CVE-2026-58596). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-security-sushii-dev-api-4556dd08/get_cve \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cve_id":"<string>"}'
```

### search_cves

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `kev` | boolean | No | When true, show only CVEs in the CISA Known Exploited Vulnerabilities catalog. |
| `page` | integer | No | Page number (1-based). |
| `query` | string | No | Free-text search matching CVE ID, vendor, product, CWE, or description. |
| `severity` | string | No | Filter by CVSS severity level. Omitted returns all severities. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-security-sushii-dev-api-4556dd08/search_cves \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"kev":"<boolean>","page":"<integer>","query":"<string>","severity":"<string>","sort":"<string>"}'
```
