Sample data

Generate sample data for DLP testing. Refresh for new data.
Looking for more sample data? Check out our sample data sets in our Help Center here.
PII
Name Credit Card
Ivory Pfeffer 3687-466900-9850
Hal Shanahan PhD 3025-513644-7749
Alda Yundt 3553-8873-0950-4384
Jasmin Mills 3528-3277-8128-0841
Raul Greenfelder 3487-684056-44835
Timothy Casper 3528-8207-3651-0916
Robin Hyatt Sr. 3465-602026-00553
Amparo Hane 3440-046232-17624
Ozzie Mosciski 3545-6494-0601-3441
Jule Franecki 3769-236281-01437

Support Ticket
Hi - I applied for an insurance policy online with my SSN 278-99-1339, however the app says an unexpected error occurred. I tried to pay with my credit card, the number is 6771-8918-5621-5161. Could you take a look on your end?

Code Snippet
import stripe
stripe.api_key = "sk_live_4eC39HqLyjWDarjtT1zdp7dcTYooMQauvdEDq54NiTphI7jx"

stripe.Charge.create(
  amount=2000,
  currency="usd",
  source="tok_amex", # obtained with Stripe.js
  description="Charge for jenny.rosen@example.com"
)