Quick Start
Get started with PingPanda in just a few minutes.
Step 1: Create an Account
- Go to pingpanda.com/sign-up
- Sign up with your email
- Verify your email address
Step 2: Get Your API Key
- Navigate to Dashboard → Settings → API Key
- Copy your API key (keep it secret!)
Step 3: Add Your Discord ID
- Go to Dashboard → Settings → Account Settings
- Enter your Discord User ID
- Save changes
Note: Don't know your Discord ID? Learn how to find it
Step 4: Create Your First Category
- Go to your Dashboard
- Click Add Category
- Enter a name (e.g., "sale", "signup", "error")
- Choose an emoji and color
- Save
Step 5: Send Your First Event
Use our API to send an event:
curl -X POST https://pingpanda.com/api/v1/events \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"category": "sale",
"fields": {
"amount": 49.99,
"customer": "john@example.com"
},
"description": "New sale completed!"
}'
Or in JavaScript:
const response = await fetch('https://pingpanda.com/api/v1/events', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
category: 'sale',
fields: {
amount: 49.99,
customer: 'john@example.com',
},
description: 'New sale completed!',
}),
});
Step 6: Check Discord
You should receive a Discord DM with your event notification!
What's Next?
- Learn more about the API Reference
- See Integration Examples
- Check out Troubleshooting if you run into issues