# tools.bip-rep.com

> tools.bip-rep.com is a paid API for AI agents from tools.bip-rep.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

## Facts

- Endpoint: POST https://tools.bip-rep.com/tls/report
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tls-report-c99ba96e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-ckXE-4OIZYmuG2TUxuCJ

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 tls-report-c99ba96e -d '<json body>'
```

## Example request

```json
{
 "input": {
  "body": {
   "hostname": "example.com"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "hostname"
     ],
     "properties": {
      "hostname": {
       "type": "string",
       "description": "Public domain name to inspect on port 443"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "port": {
       "type": "integer"
      },
      "chain": {
       "type": "array"
      },
      "issuer": {
       "type": "object"
      },
      "subject": {
       "type": "object"
      },
      "hostname": {
       "type": "string"
      },
      "valid_to": {
       "type": "string"
      },
      "latency_ms": {
       "type": "integer"
      },
      "valid_from": {
       "type": "string"
      },
      "serial_number": {
       "type": "string"
      },
      "days_remaining": {
       "type": "integer"
      },
      "fingerprint256": {
       "type": "string"
      },
      "subjectaltname": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tls-report-c99ba96e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tools.bip-rep.com](https://www.zero.xyz/host/tools.bip-rep.com/llms.txt)
