API Documentation
Open-source REST API for accessing Synoros Software project data. All endpoints are available at https://synoros.io/api/v1
No authentication required for public endpoints. Rate limited to 100 requests per minute.
Base URL
https://synoros.io/api/v1GET
/api/v1/projectsList all Synoros Software projects with metadata, status, and links.
Response
{
"projects": [
{
"id": "paragon-royale",
"name": "Paragon Royale",
"category": "analytics",
"status": "live",
"url": "https://paragonroyale.com",
"tags": ["Clash Royale", "Analytics"]
}
]
}GET
/api/v1/projects/:idGet detailed information about a specific project.
Response
{
"id": "paragon-royale",
"name": "Paragon Royale",
"tagline": "Clash Royale analytics & performance tracking",
"description": "...",
"category": "analytics",
"status": "live",
"url": "https://paragonroyale.com",
"tags": ["Clash Royale", "Analytics"]
}POST
/api/v1/bugsSubmit a bug report for any Synoros Software project.
Response
{
"success": true,
"message": "Bug report received"
}POST
/api/v1/contactSend a contact message to the Synoros Software team.
Response
{
"success": true,
"message": "Message sent"
}More endpoints coming soon
We're actively building out the API. Game-specific analytics endpoints, mod metadata, and webhook integrations are all on the roadmap.