Skip to Content
Getting StartedOverview

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

  1. Log in to your partner dashboard 
  2. Navigate to Settings → API Keys
  3. Click Generate API Key
  4. 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