BitBooth Regex Test
BitBooth Regex Test: pay 0.001 USDC, safely compile and run a regex against a corpus. Returns structured matches with capture groups, indices, and lengths. JS engine flags (g, i, m, s, u, y, d). Hard CPU deadline guards against catastrophic backtracking (ReDoS) — `regex_timeout` is reported instead of stalling. Stateless, no API key.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
598 msmedian answer time
$0.005listed price per call
$0.005price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://app.heinrichstech.com/v1/cdp/regex-test
| Category | Code and developer |
|---|---|
| Provider host | app.heinrichstech.com |
| Networks | eip155:1440000, eip155:8453, stellar:pubnet, xrpl:0 |
| Payment schemes | exact, onchain |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 598 ms |
Example input (from the provider)
{
"body": {
"captureLimit": 100,
"flags": "g",
"input": "a1 b22 c333",
"pattern": "\\d+"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"captureLimit": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"flags": {
"maxLength": 8,
"type": "string"
},
"input": {
"type": "string"
},
"pattern": {
"maxLength": 1024,
"type": "string"
}
},
"required": [
"pattern",
"input"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}