/v1/org
Organization 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/github-api/v1/org" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/github-api/v1/org", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/github-api/v1/org");
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/org",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"id": 9919,
"url": "https://api.github.com/orgs/github",
"blog": "https://github.com/about",
"name": "GitHub",
"type": "Organization",
"email": null,
"login": "github",
"company": null,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=",
"html_url": "https://github.com/github",
"location": "United States of America",
"followers": 76520,
"following": 0,
"hooks_url": "https://api.github.com/orgs/github/hooks",
"repos_url": "https://api.github.com/orgs/github/repos",
"avatar_url": "https://avatars.githubusercontent.com/u/9919?v=4",
"created_at": "2008-05-11T04:37:31Z",
"events_url": "https://api.github.com/orgs/github/events",
"issues_url": "https://api.github.com/orgs/github/issues",
"updated_at": "2026-05-06T23:12:05Z",
"archived_at": null,
"description": "How people build software.",
"is_verified": true,
"members_url": "https://api.github.com/orgs/github/members{/member}",
"public_gists": 0,
"public_repos": 551,
"twitter_username": null,
"public_members_url": "https://api.github.com/orgs/github/public_members{/member}",
"has_repository_projects": true,
"has_organization_projects": true
},
"meta": {
"timestamp": "2026-06-02T16:52:59.707Z",
"request_id": "075090ee-23a9-4fd4-9444-7277c284807e"
},
"status": "ok",
"message": "Organization profile",
"success": true
}