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
Linnie Mertz 3528-7414-2264-8333
Sandee Bashirian 3684-147669-0644
Jonathan Osinski 3449-351080-80872
Buford Gorczany 3789-359541-60959
Lillia Mitchell 3528-3624-2337-7143
Gene Murray MD 3037-500962-1772
Saul Monahan 3473-815552-83999
Octavio Abbott 3004-621212-2664
Francesca Bins 3017-590874-8555
Arturo Schmeler 3495-280944-72206

Support Ticket
Hi - I applied for an insurance policy online with my SSN 874-01-0323, however the app says an unexpected error occurred. I tried to pay with my credit card, the number is 6771-8931-4437-6029. 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"
)