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
Tyler Haag 3733-671456-39581
Eugenio Kohler 3687-707485-7169
Rodger Harvey 3766-006732-68085
Jerold Moen 3774-344106-79001
Dwayne Rolfson 3689-499156-9504
Ramiro O'Conner 3410-556388-13529
Elvera Lynch 3714-920577-46802
Keith Skiles 3533-1970-9560-7010
Yan Bode 3687-825278-8861
Mr. Martin Hyatt 3726-528427-10954

Support Ticket
Hi - I applied for an insurance policy online with my SSN 104-51-7101, however the app says an unexpected error occurred. I tried to pay with my credit card, the number is 5458-8366-6661-3057. 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"
)