Base URL
All API requests use the following base URLs:| Environment | Base URL |
|---|---|
| Sandbox | https://sandbox.stellasbank.com/api/v1 |
| Production | https://api.stellasbank.com/api/v1 |
Request format
- All request bodies must be JSON.
- Set
Content-Type: application/jsonon every request that includes a body. - File upload endpoints (such as business registration) accept
multipart/form-data— see those endpoint pages for details.
Authentication
Every business endpoint requires three headers:Response envelope
All responses — success and error — follow the same JSON envelope:true if the request succeeded; false if it failed. Use this field for programmatic checks.A human-readable outcome description. Use for logging — do not drive application logic from this string.
The response payload. A single object for actions and detail endpoints; an array for list endpoints;
null on errors.List responses and pagination
Endpoints that return collections include apagination object alongside data. See Pagination for the full field reference and usage examples.
Errors
On failure,status is false and message describes the problem. See Errors for the full status code reference and handling guidance.
Postman collection
A pre-configured Postman workspace with all endpoints is available at the link below — useful for exploring the API before writing integration code.Interstellas Postman Collection
Test every endpoint interactively with pre-configured environments for sandbox and production.