List API Subscriptions

Get all API subscriptions under your account.

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

Request URL Format:

https://api.ssdnodes.com/api-subscriptions

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 <API Subscriptions per Page>
10
Number of API subscriptions 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, "productname": "API Subscription", "regdate": "2025-05-01", "billingcycle": "Annually", "nextduedate": "2026-05-01", "domainstatus": "Active" } ]

Error Response Format:

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

CURL Example

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

Copied!