# convert.bip-rep.com

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

## Facts

- Endpoint: POST https://convert.bip-rep.com/html2text
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/html2text-11077dc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_luMILI4JXT-LRhnQB8PeV

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 html2text-11077dc4 -d '<json body>'
```

## Example request

```json
{
 "input": {
  "body": {
   "html": "<html><head><title>Test Page</title></head><body><h1>Hello World</h1><p>This is a test paragraph with <strong>bold text</strong> and <em>italic text</em>.</p><ul><li>Item 1</li><li>Item 2</li></ul></body></html>"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 },
 "output": {
  "type": "text"
 }
}
```

## 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": [
      "html"
     ],
     "properties": {
      "html": {
       "type": "string",
       "description": "HTML source to reduce to clean plain text"
      }
     },
     "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": {
      "text": {
       "type": "string"
      },
      "latency_ms": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

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