# security.txt Inspector

> security.txt Inspector is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches and parses a domain's security.txt file to extract security contacts, disclosure policies, and trust links.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/security-txt-inspect
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-delx-ai-04422374
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gxnwf3FOpBbehJzAVqOVI

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 api-delx-ai-04422374 -d '<json body>'
```

Example prompt: Can you check the security.txt file for stripe.com and tell me the security contact email, disclosure policy URL, and any trust or acknowledgment links listed there?

## When to prefer this

Use this endpoint when you need to identify the correct security contact or responsible disclosure channel for a domain before reporting a vulnerability, performing outreach, or assessing a domain's security posture. Prefer this over generic web scraping when you specifically need structured security.txt data including contacts, PGP keys, and policy links.

## Known failure modes

- Domain does not have a security.txt file — returns not-found or empty result
- Domain is unreachable or returns non-200 status — returns fetch error
- security.txt file exists but is malformed or unparseable — partial or empty fields returned
- Domain input is invalid or missing — returns validation error
- Rate limit exceeded — returns 429 or payment required error

## How this service works

Find security.txt contacts, disclosure policy, and trust links for a domain.

## Output

Returns the parsed contents of a domain's security.txt file including security contact addresses, disclosure or bug bounty policy URLs, PGP encryption key links, canonical URL, acknowledgment/hall-of-fame links, expiry date, and any other trust-related metadata declared by the domain owner.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "timeout": {
   "type": "integer",
   "maximum": 15,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "found": true,
   "expires": "2030-01-01T00:00:00Z",
   "contacts": [
    "mailto:security@example.com"
   ],
   "policies": [
    "https://example.com/security-policy"
   ],
   "security_txt_url": "https://example.com/.well-known/security.txt"
  },
  "tool_name": "util_security_txt_inspect"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-delx-ai-04422374/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
