Create public key

Creating a public key is the way for your organization to share it with Tremendous.

🔒

Generating asymmetric keys

We recommend using OpenSSL.

  1. Generate a private key and a public key in PEM:
    openssl genrsa -out tremendous_key.pem 4096

  2. Extract the public key in PEM format:
    openssl rsa -in tremendous_key.pem -outform PEM -pubout -out tremendous_key.pem.pub

  3. And, before making your request, encode it as a base64 string:
    base64 -i tremendous_key.pem.pub

Property Type Description
public_key
string

Base64 encoded (public) PEM file

Language
Credentials
Bearer
URL
Click Try It! to start a request and see the response here!