# DDG TLS Version Check

> DDG TLS Version Check is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Checks the TLS version used in an HTTP connection and returns a bounded result indicating TLS compliance or version details.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/tls-version-check
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-tls-version-check-49bd117e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8TFVQmjx3WALS7iM60IMg

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 ddg-tls-version-check-49bd117e -d '<json body>'
```

Example prompt: Can you check what TLS version is being used on my connection — I need to confirm it's TLS 1.3 for our security audit?

## When to prefer this

Choose this endpoint when you need a quick, machine-payable (x402 USDC) TLS version check as a bounded artifact — ideal for AI agents that need to verify TLS compliance without managing raw TLS tooling or provider credentials. Useful in automated security audits or pre-deployment checks where per-call micropayments via crypto rails are acceptable.

## Known failure modes

- Invalid or missing required body fields returns an error
- Non-POST/PUT/PATCH HTTP method rejected
- Malformed JSON body causes processing failure
- Payment not settled causes 402 response before result is returned
- Network timeout if upstream TLS handshake stalls

## How this service works

Machine-payable DDG services for AI agents. Current public live payment rails are x402 multi-chain USDC and direct-crypto auto/manual for public receiving-address families. MPP/Stripe/Tempo is installed but pending live provider env plus penny-settlement proof before any MPP-live advertisement. DDG sells bounded artifacts/results, not raw provider account access.

## Output

Returns a JSON object with an 'ok' boolean indicating whether the TLS version check succeeded, along with any TLS version details detected from the connection.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "ok": true
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-tls-version-check-49bd117e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.daedalusdevelopmentgroup.com](https://www.zero.xyz/host/agents.daedalusdevelopmentgroup.com/llms.txt)
