Aller au contenu
GET /v1/meta

Spec

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/certdecode-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/certdecode-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/certdecode-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/certdecode-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/certdecode-api/v1/meta",
    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": {
        "auth": "none upstream; this gateway requires x-api-key",
        "name": "Certificate Decoder API",
        "note": "Decode a PEM X.509 certificate. Pass ?pem= the certificate (-----BEGIN CERTIFICATE-----…) and get back the subject and issuer (parsed), validity window with days-until-expiry and an expired flag, serial number, SHA-1/SHA-256 fingerprints, Subject Alternative Names, key type/size, CA and self-signed flags. Distinct from sslcheck-api (live TLS handshake). Instant, nothing stored.",
        "source": "Local X.509 parsing (Node crypto) — no key, no upstream",
        "endpoints": 2
    },
    "meta": {
        "timestamp": "2026-06-02T16:51:52.126Z",
        "request_id": "dc1e94b3-df0b-4d92-8de3-9fbd336f67ad"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}