List All VM's

Get all VM's under your account.

You can optionally:
• Specify how many VM's per page to fetch
• Specify which page number to fetch
• Order and sort by specific field name

Request URL Format:

https://api.ssdnodes.com/servers

Header Format:

Authorization: Bearer 123456789123456789123456789123456789

Request Parameters:

Parameter Values Allowed Default Value Description
page_id <Page ID>
1
The page number to fetch
items_per_page <VM's per Page>
10
Number of VM's per page to fetch
order_by <Field Name>
id
Order by specific field name.
id, domain, regdate, billingcycle,
nextduedate, domainstatus
sort [asc,desc]
asc
Sort order for the specific field name

Success Response Format:

[ { "id": 1234, "domain": "ssdnodes-1234", "regdate": "2025-05-01", "billingcycle": "triennially", "nextduedate": "2028-05-01", "domainstatus": "Active" }, { "id": 1235, "domain": "ssdnodes-1235", "regdate": "2025-05-05", "billingcycle": "Monthly", "nextduedate": "2025-06-25", "domainstatus": "Active" } ]

Error Response Format:

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

CURL Example

                curl -X GET https://api.ssdnodes.com/servers -H "Authorization: Bearer 1265e955731xxxxxxxxxx496ac97625d316cc8f6a7d585c58cfd17xxxxxxxxxx" -H "Content-Type: application/json" -d "{\"page_id\":1,\"items_per_page\":2,\"order_by\":\"id\",\"sort\":\"desc\"}"
            

Copied!