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
The Hon. Jeff Bednar 3055-541738-4135
Charmaine Thompson 3684-215780-1989
Jeffrey Hyatt 3689-436857-4632
Edwin Hammes 3687-504769-3687
Sen. Chante Emmerich 3769-317273-21038
Msgr. Tim Barton 3734-399080-97875
Tish Barton 3015-536926-3989
Armand Mueller 3057-663489-1835
Sherice Kohler 3528-9117-3039-5535
Latesha Donnelly III 3485-492949-98882

Support Ticket
Hi - I applied for an insurance policy online with my SSN 460-89-6124, however the app says an unexpected error occurred. I tried to pay with my credit card, the number is 5312-2310-5791-0690. 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"
)