# Bolt Regex Match

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

Runs a regex pattern against input text and returns match results, supporting optional flags

## Facts

- Endpoint: POST https://deltadata.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-match-20c905db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MSmjJD0Y9Fj0VWcngGMHb

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-match-20c905db -d '<json body>'
```

Example prompt: Check if the text 'Order #4521 placed on 2024-03-15' matches the pattern '\\d{4}-\\d{2}-\\d{2}' and return what it finds — use the case-insensitive flag.

## When to prefer this

Choose this endpoint when an AI agent needs to perform regex matching, extraction, or validation on text without running local code — especially useful in sandboxed environments or when chaining into a pay-per-use workflow via x402/USDC micropayments.

## Known failure modes

- Invalid regex pattern returns an error or failed success flag
- Missing required 'text' or 'pattern' fields returns a 400-level error
- Unsupported regex flags may cause execution errors
- Payment not included or invalid results in 402 Payment Required
- Malformed JSON body returns a parsing error

## 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-match-20c905db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deltadata.orbonomy.xyz](https://www.zero.xyz/host/deltadata.orbonomy.xyz/llms.txt)
