Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/csr-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/csr-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/csr-api/v1/meta");
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/csr-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "auth": "none upstream; this gateway requires x-api-key",
        "name": "CSR API",
        "note": "Generate and parse X.509 Certificate Signing Requests. /v1/generate?common_name=example.com&org=…&san=example.com,www.example.com&bits=2048 returns a CSR plus a fresh RSA private key (PEM). /v1/parse?csr=… reads the subject, SANs, key size and signature validity. For development/testing — keep production keys offline. Distinct from key-pair generation, certificate decoding and live SSL checks.",
        "source": "Local PKCS#10 generation/parsing (Node crypto + node-forge) — no key, no upstream",
        "endpoints": 3
    },
    "meta": {
        "timestamp": "2026-06-02T16:51:51.890Z",
        "request_id": "019a9f5b-2f21-4695-9b70-ac93e4a86b3f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}