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
Carlyn Bahringer 3685-539377-6138
Ashely Donnelly DDS 3043-143471-3864
Gwendolyn Herman 3686-436730-2749
Mario Bradtke Jr. 3529-1451-4179-7794
Shirly Klein PhD 3024-077432-9847
Ann Harris 3777-255779-53562
Jame Doyle 3013-208694-2112
Mrs. Diego Grady 3013-487913-9856
Mose Krajcik 3529-3901-1368-6852
Romelia Crist 3046-594476-7119

Support Ticket
Hi - I applied for an insurance policy online with my SSN 312-04-6586, however the app says an unexpected error occurred. I tried to pay with my credit card, the number is 5476-0907-3444-9684. 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"
)