List All Apps

Get all available Apps ID, name, and operating system it runs on. The ID could be used in forming other API requests.

Request URL Format:

https://api.ssdnodes.com/apps

Header Format:

Authorization: Bearer 123456789123456789123456789123456789

Success Response Format:

[ { "id": 1, "app": "WordPress", "operatingsystem": "Ubuntu 22.04" }, { "id": 2, "app": "Zabbix", "operatingsystem": "Ubuntu 22.04" }, { "id": 3, "app": "phpMyAdmin", "operatingsystem": "Ubuntu 22.04" }, { "id": 4, "app": "Webmin", "operatingsystem": "Ubuntu 22.04" }, { "id": 5, "app": "Nextcloud", "operatingsystem": "Ubuntu 22.04" }, { "id": 6, "app": "LAMP", "operatingsystem": "Ubuntu 22.04" }, { "id": 7, "app": "LEMP", "operatingsystem": "Ubuntu 22.04" }, { "id": 8, "app": "Grafana", "operatingsystem": "Ubuntu 22.04" } ]

Error Response Format:

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

CURL Example

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

Copied!