Skip to Content
Introduction

Splashify Pro Partner API

Welcome to the official API documentation for Splashify Pro partners. Build powerful integrations with our messaging platform using our RESTful API.

Base URL

All API requests are made to:

https://apis.splashifypro.com/api/v1/partner/

Authentication

Every API request requires authentication via an API key sent in the Authorization header:

Authorization: Bearer pk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Note: API keys are generated from your partner dashboard. The key is only shown once — store it securely.

Response Format

All responses are returned as JSON. Successful responses include a success: true field:

{ "success": true, "message": "Operation completed", "data": { ... } }

Error responses include an error field:

{ "error": "Error description", "message": "Detailed error message" }

HTTP Status Codes

CodeDescription
200Success
201Resource created
400Bad request / validation error
401Unauthorized — invalid API key
403Forbidden — access denied
404Resource not found
409Conflict (e.g. duplicate)
500Internal server error
503Service unavailable