API Documentation
Slot provides a RESTful API for programmatically accessing and filtering starter templates. The API follows REST conventions and returns JSON responses.
Base URL: All API endpoints are relative to:https://slotstarters.com/api
Available Endpoints
List Starters
Get a paginated list of starter templates with optional filtering.
GET /starters
View Documentation âGet Starter
Get detailed information about a specific starter template.
GET /starters/:id
View Documentation âResponse Format
All responses are returned in JSON format. Successful responses will contain the requested data, while error responses will include an error object with details about what went wrong.
Success Response
{
"items": [...],
"pagination": {
"total_items": 100,
"total_pages": 5,
"current_page": 1,
"per_page": 20,
"has_next": true,
"has_previous": false
}
}
Error Response
{
"error": {
"status": 400,
"message": "Invalid parameter value"
}
}
Rate Limiting
Currently, the API does not implement rate limiting. However, we recommend clients to implement reasonable request rates to ensure service stability.