# Bolt Regex Matcher

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

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

## Facts

- Endpoint: POST https://v0-bolt.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-d1c0d13e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wKMrgCx1C8tWyzzzrl1n2

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

Example prompt: Run a regex on the text 'Order ID: 12345, Date: 2024-03-15' using the pattern '(\d{4}-\d{2}-\d{2})' with the 'g' flag to extract all dates.

## When to prefer this

Use this endpoint when an AI agent needs to perform regex matching or extraction on a text string without spinning up a local runtime, or when operating in a sandboxed environment where executing code directly is not feasible. Ideal for pattern validation tasks (emails, dates, IDs) or extracting structured tokens from unstructured text as part of an automated workflow.

## Known failure modes

- Invalid regex pattern syntax returns an error
- Missing required 'text' or 'pattern' fields returns a 400-level error
- Payment not provided or insufficient USDC results in 402 response
- Overly complex or catastrophically backtracking regex may time out
- Unsupported flag characters may cause processing failure

## 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 substrings and capture groups 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-d1c0d13e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
