/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}