# DopamineDesk SSL Certificate Inspector

> DopamineDesk SSL Certificate Inspector is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves and validates SSL/TLS certificate details for any given hostname, including issuer, validity dates, days remaining, and signature algorithm.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/ssl_certificate
- 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/dopaminedesk-ssl-certificate-inspector-2a876a41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CDRRZqj-msbRiUFZj4MIO

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 dopaminedesk-ssl-certificate-inspector-2a876a41
```

Example prompt: Can you check the SSL certificate for mybank.com — I want to know if it's valid, who issued it, and how many days are left before it expires?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call SSL certificate lookup without setting up your own TLS inspection infrastructure. Ideal for one-off due-diligence checks on third-party domains, security audits, phishing verification, or automated certificate expiry monitoring in agent workflows. At $0.01 USDC per call via x402, it suits sporadic or on-demand checks rather than high-volume continuous monitoring.

## Known failure modes

- Domain not reachable or no SSL certificate present — may return valid: false or an error
- Expired certificate — valid: false with negative days_remaining
- Domain parameter missing — validation error
- Self-signed or untrusted certificate — may return valid: false with issuer details
- Hostname resolution failure — connection error response

## How this service works

Inspect the certificate returned by a live TLS handshake, including validity, issuer, subject, authorization, and SHA-256 fingerprint.

## Output

Returns a JSON object with the domain name, a boolean indicating if the certificate is valid, the issuer organization, the subject (CN), valid_from and valid_to timestamps in ISO 8601 format, an integer count of days_remaining until expiry, and the signature_algorithm string (e.g. sha256WithRSAEncryption).

## 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": {
      "domain": {
       "type": "string",
       "description": "The hostname to inspect."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "see"
     ],
     "properties": {
      "see": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "see": "https://ai-data-marketplace-1042299154756.us-central1.run.app/openapi.json"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-ssl-certificate-inspector-2a876a41/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
