Account API is now live! πŸ₯³

Friday, September 13, 2024

We’re thrilled to announce that the SSLreminder account API is now live and available to all paid customers!

After an exciting pre-release phase with a select group of testers, we’ve fine-tuned the endpoints to ensure they meet the needs of our users. The API allows you to automate domain management, making it easier to keep track of your SSL/TLS certificates, integrate seamlessly with your existing tools, and streamline domain management operations.

What can you do with the SSLreminder API?

Our API enables you to:

  • Add a new domain name to your SSLreminder account
  • Retrieve detailed information about your domain names
  • List all domain names associated with your account
  • Delete domain names when necessary

Getting started

To start using the API, you’ll need an API token available to accounts on paid plans. Here’s how to get it:

  1. Log in to your SSLreminder account
  2. Navigate to the Account section
  3. Generate an API token, which you’ll use for authentication when making requests

Full API documentation is available at https://api.sslreminder.pro


A simple example

Here’s a quick example of how to check the status of our API:

Health check endpoint

This endpoint does not require an API key and can be accessed by anyone:

➜  ~ curl --request GET --url https://api.sslreminder.pro/healthy

The response will let you know if everything is running smoothly:

{'status': 'Healthy'}
Retrieving domain information

Once you’ve generated your API token, you can retrieve information on any domain name under your account:

➜  ~ curl --request GET --url https://api.sslreminder.pro/domain_names/example.com 
     --header 'Authorization: Bearer <Your API token>' 
     --header 'Content-Type: application/json' 
     --header 'Accept: application/json'

The response will show details about the domain, including its SSL/TLS certificate status:

{
     'domain_name': 'example.com',
     'certificate_checked_at': '2024-09-27 08:45:15',
     'valid_until': '2025-01-22 07:03:00'
}

Ready to streamline your TLS management?

The API is available now to all paid customers, so if you haven’t already, be sure to check it out and start automating your certificate management.

As always, we’re here to help!

Don’t hesitate to reach out if you have any questions or feedback:

Stay tuned for more updates as we continue to enhance the API and bring even more features to SSLreminder!

Introducing our new account API (pre-release)