# NetIntel SSL/TLS Analyzer

> NetIntel SSL/TLS Analyzer is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Performs a TLS handshake to inspect certificate chains, probe supported TLS versions (1.0–1.3), detect weak keys and expiry issues, and return an overall security grade (A/B/C/F) for a domain.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/ssl/analyze
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-production-440c-up-railway-app-f9dd7ce9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AxYBsqtHJ_rYl78z8jmbP

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 netintel-production-440c-up-railway-app-f9dd7ce9
```

Example prompt: Can you run a full SSL/TLS security analysis on api.example.com and tell me the security grade, whether the certificate chain is valid, and if there are any weak keys or expiry issues?

## When to prefer this

Use this endpoint when you need a comprehensive TLS/SSL security audit including grade, certificate chain inspection, version probing, and weak key detection for a specific domain. Prefer this over a simple certificate expiry checker when you need multi-version TLS probing and a scored security grade. It complements the sibling email security (SPF/DKIM/DMARC) and DNS endpoints on the same platform for full domain security audits.

## Known failure modes

- Domain does not exist or is unreachable — connection error returned
- Port is closed or not serving TLS — handshake failure
- Domain resolves but certificate is completely invalid — may still return F grade with warnings
- Invalid domain format in query parameter — validation error
- Rate limiting or payment failure — 402 or 429 response

## How this service works

Performs a TLS handshake to inspect the certificate chain, probes supported TLS versions (1.0–1.3), detects weak keys and expiry issues, and returns an overall security grade (A/B/C/F).

## Output

Returns a structured report including: the domain host and port, the overall security grade (A/B/C/F), the full certificate chain, whether the chain is valid, a connection summary, detailed certificate metadata, and an array of warnings about weak keys, outdated TLS versions, or expiry problems.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "port": 443,
   "domain": "example.com"
  }
 }
}
```

## 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": [
      "domain"
     ],
     "properties": {
      "port": {
       "type": "number",
       "description": "Port to connect to (default: 443)"
      },
      "domain": {
       "type": "string",
       "description": "Domain to analyze (e.g. example.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "host": {
       "type": "string"
      },
      "port": {
       "type": "number"
      },
      "chain": {
       "type": "array"
      },
      "grade": {
       "type": "string"
      },
      "warnings": {
       "type": "array"
      },
      "connection": {
       "type": "object"
      },
      "certificate": {
       "type": "object"
      },
      "chain_valid": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "host": "example.com",
  "port": 443,
  "chain": [
   {
    "issuer": "DigiCert Global Root CA",
    "subject": "DigiCert TLS RSA SHA256 2020 CA1",
    "not_after": "Apr 13 23:59:59 2031 GMT",
    "not_before": "Apr 14 00:00:00 2021 GMT"
   }
  ],
  "grade": "A",
  "warnings": [],
  "connection": {
   "cipher": "TLS_AES_256_GCM_SHA384",
   "protocol": "TLSv1.3",
   "supported_protocols": [
    "TLS 1.2",
    "TLS 1.3"
   ]
  },
  "certificate": {
   "san": [
    "example.com",
    "www.example.com"
   ],
   "issuer": {
    "country": "US",
    "common_name": "DigiCert TLS RSA SHA256 2020 CA1",
    "organization": "DigiCert Inc"
   },
   "subject": {
    "country": "US",
    "common_name": "example.com",
    "organization": "Internet Corporation for Assigned Names and Numbers",
    "organizational_unit": null
   },
   "version": 3,
   "key_info": {
    "size": 2048,
    "algorithm": "RSA"
   },
   "not_after": "Feb 13 23:59:59 2025 GMT",
   "not_before": "Jan 13 00:00:00 2024 GMT",
   "serial_number": "0FD078DD48F1A2BD4D0F2BA96B6038FE",
   "signature_algorithm": "sha256WithRSAEncryption"
  },
  "chain_valid": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-production-440c-up-railway-app-f9dd7ce9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
