# DNS HTTPS Record Parse

> DNS HTTPS Record Parse is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Parses and validates DNS HTTPS resource record fields — service priority, target name, and service parameters — from a caller-supplied record string, returning normalized findings and a pass/advisory status.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/dns-https-record-parse
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dns-https-record-parse-99d5b426
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vsPxMS4mj77JQaP6Dd1WI

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 dns-https-record-parse-99d5b426 -d '<json body>'
```

Example prompt: Parse this DNS HTTPS record string for me and tell me whether the service priority, target, and parameters are valid: 'v=HTTPS 1 . alpn="h2" ipv4hint=192.0.2.1'

## When to prefer this

Use this endpoint when you need a lightweight, deterministic, first-party parser for DNS HTTPS resource records — especially before accepting, caching, redirecting, or retrying a web response based on a caller-supplied record. Prefer it over general-purpose DNS libraries when you need a normalized JSON output with explicit pass/advisory status and no external provider dependency.

## Known failure modes

- Malformed record string returns advisory status with error details
- Record exceeding 8192 characters is rejected
- Missing or empty record field returns validation error
- Unrecognized or non-standard service parameters may yield advisory rather than pass status
- Payment failure (x402) results in request not being processed

## How this service works

DNS Https Record Parse: DNS Https Record Parse parses HTTPS service priority, target, and bounded service parameters from bounded caller-supplied values without an external provider. Call DNS Https Record Parse before accepting, caching, redirecting, or retrying a caller-supplied web response. Returns normalized web evidence, the computed finding, and an explicit pass or advisory status for DNS Https Record Parse as versioned deterministic JSON. Price: $0.001 USDC via x402 on Base. First-party,…

## Output

Returns versioned deterministic JSON containing normalized web evidence (extracted service priority, target, and service parameters), the computed parsing finding, and an explicit pass or advisory validation status for the supplied DNS HTTPS record string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "record": {
   "type": "string",
   "maxLength": 8192,
   "description": "Record supplied to DNS Https Record Parse; used only for this bounded calculation and processed in memory without retention."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "target": ".",
   "priority": 1,
   "parameters": {
    "alpn": "h2,h3",
    "port": "443"
   }
  },
  "schema": "delx/util-dns-https-record-parse/v1",
  "status": "pass",
  "evidence": {
   "retained": false,
   "input_sha256": "9207ab9eea6ffec3d23421382762e02b86b355012b26a34f5b5d7442033178aa",
   "external_calls": 0
  },
  "operation": "web_reliability:dns_https_record_parse"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dns-https-record-parse-99d5b426/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)
