List All OS's

Get all available OS's ID and name. The ID could be used in forming other API requests.

Request URL Format:

https://api.ssdnodes.com/operating-systems

Header Format:

Authorization: Bearer 123456789123456789123456789123456789

Success Response Format:

[ { "id": 1466, "operatingsystem": "CentOS Stream 8" }, { "id": 1663, "operatingsystem": "Ubuntu 24.04" }, { "id": 1506, "operatingsystem": "Rocky Linux 8" }, { "id": 1495, "operatingsystem": "AlmaLinux 8" } ]

Error Response Format:

[ { "status": "error", "msg": "Invalid or expired token." } ]

CURL Example

                curl -X GET https://api.ssdnodes.com/operating-systems -H "Authorization: Bearer 123456789123456789123456789123456789"
            

Copied!