Vai al contenuto
GET /v1/organization

An organization's public profile

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/devto-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}