# Bolt Regex Matcher

> Bolt Regex Matcher is a paid API for AI agents from bolt.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Applies a regular expression pattern to a text string and returns match results, supporting optional flags

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/regex
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-regex-matcher-4b9bf86a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I8OF8grfBQSpN5MkbaxWf

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 bolt-regex-matcher-4b9bf86a -d '<json body>'
```

Example prompt: Use the Bolt regex tool to find all email addresses in this text: 'Contact us at support@example.com or sales@company.org for help' — use the pattern [\w.-]+@[\w.-]+\.\w+ with global flag 'g'.

## When to prefer this

Use this endpoint when an AI agent needs server-side regex execution — for instance when the agent cannot run code locally, or needs a reliable, paid-per-use regex service. Prefer this over building regex logic inline when working in constrained environments or when consistent server-side evaluation is required.

## Known failure modes

- Invalid regex pattern syntax returns an error or success:false
- Missing required 'text' or 'pattern' fields causes a 400-level error
- Payment failure (x402) if USDC balance is insufficient
- Regex catastrophic backtracking on complex patterns may time out
- Unsupported flags string may cause parsing errors

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

A JSON object with a 'success' boolean and a 'data' object containing the regex match results, such as matched substrings, capture groups, or a boolean indicating whether the pattern matched the input text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "pattern"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "flags": {
   "type": "string"
  },
  "pattern": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-regex-matcher-4b9bf86a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
