Welcome to the Free-DC API endpoint for BOINC cross-project statistics.
GET /get_user.php?cpid={CPID}
Returns XML data containing all projects a user participates in, based on their Cross-Project ID (CPID).
https://api.free-dc.org/get_user.php?cpid=cc2bdbcee7976d78486beeeb937bd376
CPID is calculated as: md5(cross_project_id + email_address)
All responses are returned in XML format with the following structure:
<user>
<project>
<name>Project Name</name>
<url>Project URL</url>
<total_credit>Total Credit</total_credit>
<expavg_credit>Recent Average Credit</expavg_credit>
<id>User ID</id>
<country>Country</country>
<team_id>Team ID</team_id>
<team_name>Team Name</team_name>
<create_time>Unix Timestamp</create_time>
</project>
...
</user>
BOINC projects can integrate this API by modifying html/inc/user.inc:
$url = "http://boinc.netsoft-online.com/get_user.php?cpid=".$cpid;$url = "https://api.free-dc.org/get_user.php?cpid=".$cpid;
This API is provided by Free-DC, maintaining comprehensive historical BOINC statistics across all projects.
For questions or support, visit stats.free-dc.org