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
Wilma Deckow 3573-1933-9615-9265
Jules Streich 3528-5604-5749-2361
Ms. Marquerite Hane 3549-1538-2647-3372
Angle Bednar 3688-168705-1103
Reginald Mohr 3055-790298-6960
Leo Roob 3490-423852-75328
Dortha Torphy 3685-343898-7661
Fredric Graham LLD 3685-420637-4157
Cherlyn Stanton 3534-9529-0727-5060
Dustin Kohler 3685-444406-4917

Support Ticket
Hi - I applied for an insurance policy online with my SSN 376-96-5208, however the app says an unexpected error occurred. I tried to pay with my credit card, the number is 5118-8224-7015-4209. 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"
)