Developers

API Documentation

Open REST API for Conduit Software project data. No authentication required for public endpoints.

Base URLhttps://conduitsoftware.org/api/v1
GET
/api/v1/projects

List all projects. Supports ?category= and ?status= filters.

Response
{
  "projects": [
    {
      "id": "paragon-royale",
      "name": "Paragon Royale",
      "category": "analytics",
      "status": "live",
      "tags": ["Fortnite", "Analytics"]
    }
  ],
  "total": 7
}
GET
/api/v1/projects?id=:id

Get a single project by ID.

Response
{
  "id": "paragon-royale",
  "name": "Paragon Royale",
  "tagline": "Fortnite analytics",
  "category": "analytics",
  "status": "live"
}
POST
/api/v1/bugs

Submit a bug report. Requires: project, title, description.

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

Send a contact message. Requires: name, email, subject, message.

Response
{ "success": true, "message": "Message sent" }

More coming soon

Game-specific analytics endpoints, mod metadata APIs, and webhook integrations are all on the roadmap.