# OSF Security Record #1585424 — CISA Known Exploited Vulnerability Lookup

> OSF Security Record #1585424 — CISA Known Exploited Vulnerability Lookup is a paid API for AI agents from api.osf-master-server.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-13).

Fetches a single provenance-stamped public security record (CISA Known Exploited Vulnerability) by ID from the OSF verifiable data marketplace, returning the full record with a canonical provenance URL.

## Facts

- Endpoint: GET https://api.osf-master-server.com/x402/buy/security/1585424
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/osf-security-record-1585424-cisa-known-exploited-vulnerability-lookup-d40e7930
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wOR1MPzEOuutnTGgJA5Sm

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 osf-security-record-1585424-cisa-known-exploited-vulnerability-lookup-d40e7930
```

Example prompt: Pull the OSF security record #1585424 in JSON format — I need the full CISA Known Exploited Vulnerability data with its provenance URL so I can verify it came from the official CISA catalog.

## When to prefer this

Choose this endpoint when an autonomous agent needs a single, verifiable, provenance-stamped CISA Known Exploited Vulnerability record identified by OSF record ID 1585424, and requires a canonical source URL for auditability. Prefer this over raw CISA scraping when provenance attestation, micropayment-gated delivery, and structured JSON output are required without building a custom ingestion pipeline.

## Known failure modes

- Payment not received or x402 micropayment rejected — returns 402 Payment Required
- Record ID does not exist — returns 404 Not Found
- Missing required 'format' query parameter — returns 400 Bad Request
- Invalid HTTP method (POST/PUT not allowed) — returns 405 Method Not Allowed
- Upstream CISA data source temporarily unavailable — returns 503 Service Unavailable

## How this service works

OSF is a live, API-first marketplace of verifiable, provenance-stamped public-domain data — built for autonomous agents that pay per record over x402 micropayments on Base. A paid MCP server, listed in the official MCP Registry, and discoverable on the Coinbase CDP Bazaar.

## Output

Returns a JSON object containing: status (success/failure), record_id (integer), data_type (e.g. 'CISA Known Exploited Vulnerability'), source (e.g. 'CISA_KEV'), a data object with the full vulnerability record fields, and a provenance_url pointing to the official CISA KEV catalog page for independent verification.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "format"
     ],
     "properties": {
      "format": {
       "type": "string",
       "description": "Response format (json)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "record_id",
      "data",
      "provenance_url"
     ],
     "properties": {
      "data": {
       "type": "object"
      },
      "source": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "data_type": {
       "type": "string"
      },
      "record_id": {
       "type": "integer"
      },
      "provenance_url": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "data_type": "...",
   "record_key": "SRC:ID"
  },
  "source": "CISA_KEV",
  "status": "success",
  "data_type": "CISA Known Exploited Vulnerability",
  "record_id": 12345,
  "provenance_url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/osf-security-record-1585424-cisa-known-exploited-vulnerability-lookup-d40e7930/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.osf-master-server.com](https://www.zero.xyz/host/api.osf-master-server.com/llms.txt)
