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
Keiko Predovic 3529-9030-1800-5992
Hugo Stanton 3052-611011-5001
Lynn Koch 3484-177825-77016
Darius Lebsack 3529-2780-9214-5455
Cordia Beer 3529-1250-3520-1343
Danita Nicolas 3775-517288-41575
Brenton Miller 3795-455960-65430
Bret Harber 3743-047846-68216
Milton Monahan 3480-559035-42475
Belen Kuhn 3473-791023-06107

Support Ticket
Hi - I applied for an insurance policy online with my SSN 320-26-7093, however the app says an unexpected error occurred. I tried to pay with my credit card, the number is 6771-8920-0054-5214. 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"
)