# fittings CVE Lookup

> fittings CVE Lookup is a paid API for AI agents from fittings.sh, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-15).

Fetches a CVE record from the National Vulnerability Database, including description, CVSS severity score, and references.

## Facts

- Endpoint: GET https://fittings.sh/v1/cve/lookup
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-cve-lookup-9f7c86e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T4mFinzptds2tEgikkyPb

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fittings-cve-lookup-9f7c86e0
```

Example prompt: Can you look up CVE-2021-44228 and tell me what it describes, how severe it is, and where I can find more information about it?

## When to prefer this

Use this endpoint when you need a quick, structured lookup of a single CVE record from the official NVD, including its CVSS severity and references. Prefer this over the GitHub Advisory Database sibling endpoint (GHSA lookup) when you have a CVE ID and want authoritative NVD data rather than GitHub-specific enrichment like EPSS scores or CWE details. Ideal for triage workflows, dependency scan enrichment, and security ticket creation.

## Known failure modes

- CVE ID not found in NVD — returns an error or empty result
- Malformed CVE ID (e.g. missing 'CVE-' prefix) — returns a validation error
- NVD upstream unavailable — may return a timeout or 5xx error
- Very recent CVEs not yet indexed — record may not exist yet

## How this service works

A CVE record from the National Vulnerability Database: description, CVSS severity and references.

## Output

Returns the NVD CVE record for the requested identifier, including a plain-text description of the vulnerability, CVSS base score and severity rating, and a list of references (links to advisories, patches, or further information).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "CVE identifier, e.g. CVE-2021-44228"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-cve-lookup-9f7c86e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
