Getting Started
This guide will help you make your first API call to the Splashify Pro Partner API.
Prerequisites
- A Splashify Pro partner account
- An API key (generated from your partner dashboard)
Step 1: Get Your API Key
- Log in to your partner dashboard
- Navigate to Settings → API Keys
- Click Generate API Key
- Copy and securely store your API key — it is only shown once
Your API key will look like: pk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Step 2: Make Your First Request
Let’s list all your users:
curl https://apis.splashifypro.com/api/v1/partner/users \
-H "Authorization: Bearer pk_live_YOUR_API_KEY"You should receive:
{
"success": true,
"users": []
}Step 3: Create a User
curl -X POST https://apis.splashifypro.com/api/v1/partner/users \
-H "Content-Type: application/json" \
-H "Authorization: Bearer pk_live_YOUR_API_KEY" \
-d '{
"user_name": "john_doe",
"email": "john@example.com",
"company": "Acme Corp",
"password": "securepassword123",
"contact": "+1234567890",
"timezone": "Asia/Kolkata",
"currency": "inr"
}'Next Steps
- Authentication → — Learn about API key security
- API Reference → — Explore all available endpoints