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 URLhttps://synoros.io/api/v1
GET
/api/v1/projects

List 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/:id

Get 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/bugs

Submit a bug report for any Synoros Software project.

Response
{
  "success": true,
  "message": "Bug report received"
}
POST
/api/v1/contact

Send 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.