Developers
API Documentation
Open REST API for Conduit Software project data. No authentication required for public endpoints.
Base URL
https://conduitsoftware.org/api/v1GET
/api/v1/projectsList 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=:idGet a single project by ID.
Response
{
"id": "paragon-royale",
"name": "Paragon Royale",
"tagline": "Fortnite analytics",
"category": "analytics",
"status": "live"
}POST
/api/v1/bugsSubmit a bug report. Requires: project, title, description.
Response
{ "success": true, "message": "Bug report received" }POST
/api/v1/contactSend 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.