# API Zavod SSL/TLS Certificate Inspector

> API Zavod SSL/TLS Certificate Inspector is a paid API for AI agents from it.finlandfoxvpn.shop, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Inspects and returns SSL/TLS certificate details for a given domain, including validity, start date, and expiration date

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/ssl
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-zavod-ssl-tls-certificate-inspector-c3be9960
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UUDp2pmmg3QnXApNc5k_r

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-zavod-ssl-tls-certificate-inspector-c3be9960
```

Example prompt: Can you check the SSL certificate for github.com — is it valid, and when does it expire?

## When to prefer this

Use this endpoint when you need a quick, lightweight lookup of SSL/TLS certificate validity and dates for a single domain without needing full website analysis. It's ideal for monitoring certificate expiry, performing security audits, or validating that a newly deployed certificate is active. Prefer this over a full site-check bundle endpoint when you only need certificate information and want to minimize cost and latency.

## Known failure modes

- Domain not found or does not exist — likely returns an error or empty response
- Domain has no SSL/TLS certificate — may return invalid or null certificate data
- Network timeout reaching the target domain
- Invalid domain format provided in query parameters
- Certificate chain issues that prevent inspection

## How this service works

SSL/TLS certificate inspection / Проверка SSL-сертификата

## Output

Returns a JSON object with the domain name, certificate start date, certificate expiration date, and a boolean indicating whether the certificate is currently valid (e.g. {"домен":"example.com","начало":"Jul 01 00:00:00 2026 GMT","окончание":"Sep 30 23:59:59 2026 GMT","действителен":true}).

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "домен": "example.com",
  "начало": "Jul 01 00:00:00 2026 GMT",
  "окончание": "Sep 30 23:59:59 2026 GMT",
  "действителен": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-ssl-tls-certificate-inspector-c3be9960/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from it.finlandfoxvpn.shop](https://www.zero.xyz/host/it.finlandfoxvpn.shop/llms.txt)
