Starter Kits

Tested Examples & Prompts

Ready-to-use copyable prompts, database schemas, and test fixtures for immediate testing in the interactive workspace.

APEX FORGE OCR · @OCR-Doc-Parser

Thermal Retail & Cafe Receipt

Attach your photo and copy-paste this prompt:

Extract this receipt to structured JSON. Please extract vendor, date, time, receipt number, individual line items with prices, tax rate and amount, and final total. Verify if subtotal + tax equals total.
Open @OCR-Doc-Parser on Poe →
APEX FORGE REGEX · @Regex-Gen-Tester

International Phone Numbers (E.164)

Paste requirement and test cases into chat:

Match international phone numbers in E.164 format.
Sample: +14155552671
Sample: +442071838750
Sample: 02071838750
Sample: not-a-number
Open @Regex-Gen-Tester on Poe →
APEX FORGE SQL · @English-To-SQL

E-Commerce Revenue by Category

Paste schema + English question:

CREATE TABLE products (id INT, title TEXT, category TEXT, price DECIMAL);
CREATE TABLE order_items (id INT, order_id INT, product_id INT, quantity INT);
INSERT INTO products VALUES (1, 'Mechanical Keyboard', 'Electronics', 120.00), (2, 'Desk Mat', 'Accessories', 25.00);
INSERT INTO order_items VALUES (101, 1, 1, 2), (102, 1, 2, 1);

Find the total revenue generated by each category, sorted highest to lowest.
Open @English-To-SQL on Poe →