Regex Tester API Documentation
Complete reference for the Regex Tester API
Authentication
Authorization: Bearer sk_live_your_key_here
GET POST /v1/regex/process
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | test, match_all, replace, split, explain, common |
| pattern | string | Yes* | Regex pattern (without delimiters). Not required for common. |
| text | string | No | Text to test against (max 100KB) |
| replacement | string | No | Replacement string for replace action |
| flags | string | No | Regex flags: i (case-insensitive), m (multiline), s (dotall) |