/v1/project
Project profile
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/sourceforge-api/v1/project" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sourceforge-api/v1/project", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sourceforge-api/v1/project");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/sourceforge-api/v1/project",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"name": "7-Zip",
"source": "SourceForge",
"status": "active",
"created": "2000-11-10",
"summary": "A free file archiver for extremely high compression",
"homepage": "http://www.7-zip.org/",
"shortname": "sevenzip",
"categories": [
"System Administrators",
"Developers",
"End Users/Desktop",
"5 - Production/Stable",
"Win32 (MS Windows)",
"Command-line",
"C++",
"C",
"GNU Library or Lesser General Public License version 2.0 (LGPLv2)",
"English",
"Windows",
"File Compression",
"Backup",
"Application Packaging",
"File Archivers"
],
"support_url": "http://sourceforge.net/projects/sevenzip/forums/forum/45797",
"developer_count": 1,
"short_description": "7-Zip is a file archiver with a high compression ratio. 7-Zip works in Windows 11 / 10 / 8 / 7 / Vista / XP / 2022 / 2019 / 2016 / 2012 / 2008 / 2003 / 2000.\r\nYou can use 7-Zip on any computer, including a computer in a commercial organization. You don't need to register or pay for 7-Zip. And there is command line version for Linux and macOS. Most of the source code is under the GNU LGPL license. The unRAR code is under a mixed license with GNU LGPL + unRAR restrictions. Check the license for details."
},
"meta": {
"timestamp": "2026-06-10T05:17:39.433Z",
"request_id": "b3a3c750-ce39-4f15-a010-c80110e19fe2"
},
"status": "ok",
"message": "Project retrieved successfully",
"success": true
}