REST API Validate CSR

Validate certificate signing request (CSR)HTTP POST

You might want to validate a certificate signing request (CSR) e.g. before using it in a certificate creation request.

API Request URL:

api.zerossl.com/validation/csr

HTTP GET Request Parameters:

Parameter Description
access_key access_key[Required] Use this parameter to specify your API access key.

HTTP POST Request Parameters:

Parameter Description
csr csr[Required] The CSR you want to validate.

API Response:

If your CSR is valid, you will receive the following JSON:

{
    "valid": true,
    "error": null
}

Response Objects:

Parameter Description
valid validReturns true to indicate your CSR is valid, false otherwise.
error errorReturns null in case the CSR was successfully validated, error code and description otherwise.