# Bolt Regex Matcher

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

Applies a regex pattern to a given text string and returns match results, supporting optional flags

## Facts

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

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-e761baa9 -d '<json body>'
```

Example prompt: Run the regex pattern `(\d{3})-?(\d{3})-?(\d{4})` against the text 'Call us at 800-555-1234 or 9005551234' with the global flag enabled and tell me what matches.

## When to prefer this

Use this endpoint when you need a quick, stateless regex match or extraction in an agent pipeline without running code locally. Ideal for serverless agent workflows where executing arbitrary code is not possible, or when you want to pay-per-use without managing regex infrastructure.

## Known failure modes

- Invalid regex pattern syntax returns an error or success:false
- Missing required 'text' or 'pattern' fields returns a 400-level error
- Pattern with no matches returns success:true with empty match data
- Invalid flag characters may cause an error or be silently ignored
- Payment failure (x402) blocks the request before processing

## How this service works

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

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the regex match results, including matched groups and positions found in 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-e761baa9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
