/v1/repo/readme
Decoded README
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/github-api/v1/repo/readme" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/github-api/v1/repo/readme", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/github-api/v1/repo/readme");
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/github-api/v1/repo/readme",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"sha": "e6549b2a7aac3785cc6f25aabe3a63f158ac5ed1",
"name": "README",
"path": "README",
"size": 6043,
"content": "Linux kernel\n============\n\nThe Linux kernel is the core of any Linux operating system. It manages hardware,\nsystem resources, and provides the fundamental services for all other software.\n\nQuick Start\n-----------\n\n* Report a bug: See Documentation/admin-guide/reporting-issues.rst\n* Get the latest kernel: https://kernel.org\n* Build the kernel: See Documentation/admin-guide/quickly-build-trimmed-linux.rst\n* Join the community: https://lore.kernel.org/\n\nEssential Documentation\n-----------------------\n\nAll users should be familiar with:\n\n* Building requirements: Documentation/process/changes.rst\n* Code of Conduct: Documentation/process/code-of-conduct.rst\n* License: See COPYING\n\nDocumentation can be built with make htmldocs or viewed online at:\nhttps://www.kernel.org/doc/html/latest/\n\n\nWho Are You?\n============\n\nFind your role below:\n\n* New Kernel Developer - Getting started with kernel development\n* Academic Researcher - Studying kernel internals and architecture\n* Security Expert - Hardening and vulnerability analysis\n* Backport/Maintenance Engineer - Maintaining stable kernels\n* System Administrator - Configuring and troubleshooting\n* Maintainer - Leading subsystems and reviewing patches\n* Hardware Vendor - Writing drivers for new hardware\n* Distribution Maintainer - Packaging kernels for distros\n* AI Coding Assistant - LLMs and AI-powered development tools\n\n\nFor Specific Users\n==================\n\nNew Kernel Developer\n--------------------\n\nWelcome! Start your kernel development journey here:\n\n* Getting Started: Documentation/process/development-process.rst\n* Your First Patch: Documentation/process/submitting-patches.rst\n* Coding Style: Documentation/process/coding-style.rst\n* Build System: Documentation/kbuild/index.rst\n* Development Tools: Documentation/dev-tools/index.rst\n* Kernel Hacking Guide: Documentation/kernel-hacking/hacking.rst\n* Core APIs: Documentation/core-api/index.rst\n\nAcademic Researcher\n-------------------\n\nExplore the kernel's architecture and internals:\n\n* Researcher Guidelines: Documentation/process/researcher-guidelines.rst\n* Memory Management: Documentation/mm/index.rst\n* Scheduler: Documentation/scheduler/index.rst\n* Networking Stack: Documentation/networking/index.rst\n* Filesystems: Documentation/filesystems/index.rst\n* RCU (Read-Copy Update): Documentation/RCU/index.rst\n* Locking Primitives: Documentation/locking/index.rst\n* Power Management: Documentation/power/index.rst\n\nSecurity Expert\n---------------\n\nSecurity documentation and hardening guides:\n\n* Security Documentation: Documentation/security/index.rst\n* LSM Development: Documentation/security/lsm-development.rst\n* Self Protection: Documentation/security/self-protection.rst\n* Reporting Vulnerabilities: Documentation/proce
…