Getting Started
Overview
The Sky5 Administrator API provides comprehensive search, filter, sort, and pagination operations across all endpoints that extend the ProjectionSearchService. This powerful system allows you to build complex queries with minimal effort.
Authentication
All API endpoints require proper authentication. Make sure you have:
Valid authentication token
Appropriate permissions for the endpoint you're accessing
Base URL
All API requests should be made to:
https://your-domain.com/api/v0Response Format
All endpoints return responses in this consistent format:
{
"message": "Data fetched successfully",
"data": [...],
"currentPage": 0,
"totalItems": 150,
"totalPages": 8
}Quick Example
Here's a simple search query to get you started:
This query finds all accounts where:
Name contains "john" (case-insensitive)
Balance is greater than or equal to 1000
Next Steps
Learn about Basic Operations
Explore Field Types
Check out Usage Examples