Practical Prompts

Copyable Examples & Prompts

Ready-to-use prompts, schemas, and test fixtures for immediate testing in the Poe chat interface.

OCR-Doc-Parser: Thermal Retail Receipt

Attach a photo of your receipt 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.
Try on Poe ↗

Regex-Gen-Tester: Phone Number with Country Code

Generate a regex and validate against multiple country code formats:

Generate a regex for international phone numbers with optional country code (+1 to +999) and 7-12 digits with optional hyphens.

Test against:
+1-555-0199 (positive)
+91-9876543210 (positive)
00123 (negative)
abc-def (negative)
Try on Poe ↗

English-To-SQL: Churn & Retention Query

Provide a schema and ask a recurring revenue churn question:

CREATE TABLE subscriptions (
  id INTEGER PRIMARY KEY,
  user_id INTEGER,
  plan TEXT,
  mrr REAL,
  status TEXT,
  cancelled_at DATE
);

INSERT INTO subscriptions VALUES 
(1, 101, 'Pro', 49.00, 'active', NULL),
(2, 102, 'Starter', 19.00, 'cancelled', '2026-02-15'),
(3, 103, 'Pro', 49.00, 'active', NULL),
(4, 104, 'Enterprise', 199.00, 'cancelled', '2026-03-01');

Question: What is total active MRR, and how much MRR was lost to cancellations?
Try on Poe ↗