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
Freddy Tremblay Esq. 3485-802067-88707
Ms. Darrel Lindgren 3685-676263-3116
Josiah Shields 3462-002567-90782
Prof. Yael Cormier 3494-526041-40809
Shanell Corkery 3042-405584-7939
Luigi Kuhic 3528-7129-8562-3047
Ingeborg Kilback 3682-821187-5432
Rev. Reyes Cruickshank 3528-2324-3760-9189
Fr. Jeremy Welch 3583-1424-1169-3590
Ebonie Moore DVM 3537-4210-4413-6327

Support Ticket
Hi - I applied for an insurance policy online with my SSN 513-06-0973, however the app says an unexpected error occurred. I tried to pay with my credit card, the number is 6771-8944-2566-1816. 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"
)