# Bolt Regex Match

> Bolt Regex Match is a paid API for AI agents from datault.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

## Facts

- Endpoint: POST https://datault.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-4089474a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lpS6SyH1cCiFJiwLQx9J5

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

Example prompt: Test whether the text 'Hello World 123' matches the regex pattern '^[A-Za-z]+ [A-Za-z]+ \d+$' and tell me if it's a match.

## When to prefer this

Choose this endpoint when you need a quick, stateless regex match against a text string without setting up a local runtime, especially in agent workflows where code execution is not available. Useful for validation steps, extraction tasks, or pattern testing as part of a larger automated pipeline.

## Known failure modes

- Invalid regex pattern syntax returns error
- Missing required 'text' or 'pattern' fields returns validation error
- Malformed flags string may cause processing failure
- Payment not provided or insufficient USDC results in 402 response
- Catastrophic backtracking on complex patterns may cause timeout

## 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 indicating if the call succeeded and a 'data' object containing the regex match result — whether the pattern matched the text, any captured groups, and match positions if applicable.

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