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_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxNote: 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
| Code | Description |
|---|---|
200 | Success |
201 | Resource created |
400 | Bad request / validation error |
401 | Unauthorized — invalid API key |
403 | Forbidden — access denied |
404 | Resource not found |
409 | Conflict (e.g. duplicate) |
500 | Internal server error |
503 | Service unavailable |
Quick Links
- Getting Started → — Authentication and first API call
- API Reference → — Complete endpoint documentation