/v1/organization
An organization's public 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/devto-api/v1/organization" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/devto-api/v1/organization", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/devto-api/v1/organization");
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/devto-api/v1/organization",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"organization": {
"name": "The DEV Team",
"github": "thepracticaldev",
"summary": "The team behind this very platform. 😄",
"twitter": "thepracticaldev",
"website": "https://dev.to",
"location": "NYC",
"tag_line": "The hardworking team behind DEV ❤️",
"username": "devteam",
"joined_at": "2016-02-03T01:04:28Z",
"tech_stack": "Rails on the backend, Preact on the frontend. Hosted on Heroku. Most traffic routes through Fastly.",
"profile_image": "https://media2.dev.to/dynamic/image/width=640,height=640,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F1%2Fd908a186-5651-4a5a-9f76-15200bc6801f.jpg"
}
},
"meta": {
"timestamp": "2026-06-13T14:39:20.570Z",
"request_id": "49621ef0-b01b-4c37-93b3-9f942a62534b"
},
"status": "ok",
"message": "Organization retrieved",
"success": true
}