# GHSA Maven Advisory Detail Lookup

> GHSA Maven Advisory Detail Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored detail for a single GitHub Security Advisory (GHSA) for Maven packages by advisory ID.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/ghsa-maven/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ghsa-maven-advisory-detail-lookup-26eadd57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sRUzNtd9_p-jHZAGUHDrU

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 ghsa-maven-advisory-detail-lookup-26eadd57
```

Example prompt: Can you pull up the full advisory details for GHSA-2345-6789-0abc from the Maven security advisories oracle — I want to see what vulnerability it describes and which packages are affected?

## When to prefer this

Use this endpoint when you need structured, stored details for a specific known GHSA Maven advisory by ID. Prefer this over general web search when you need machine-readable vulnerability data for a Java/Maven package advisory and already have the GHSA identifier. Best suited for agents resolving dependency vulnerability alerts or enriching security scan results with advisory context.

## Known failure modes

- Missing or invalid entityId returns an empty or error response
- Untracked or unknown GHSA ID returns no entity data
- Malformed entityId format (not matching 'ghsa:GHSA-xxxx' pattern) may result in a lookup failure
- Network or upstream storage errors may return a 5xx response
- Payment failure via x402 protocol blocks access to the endpoint

## How this service works

Full detail for a single vulnerability advisory by CVE / GHSA ID (e.g. 'ghsa:GHSA-xxxx') — severity, CVSS score, affected Maven/Java package(s), and source link.

## Output

An entity object containing the stored details of the requested GHSA Maven advisory, including vulnerability metadata, affected package information, and advisory specifics keyed by the provided GHSA entityId.

## 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",
     "properties": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ghsa-maven-advisory-detail-lookup-26eadd57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
