List Products
This action lists all products registered on WISECP.
Method / Endpoint
POST/ {{API_URL}} products
Request Parameters
Name | Requirement | Description |
---|---|---|
key | Yes | API Key |
Sample cURL Request
curl --location 'https://example.com/api/reseller/products' \
--header 'Content-Type: application/json' \
--data '{
"key": "UzZBSlBWeWk0UEcrVWxlU0RjS1B1dz09"
}'
Sample JSON Response
{
"status": "successful",
"data": [
{
"type": "hosting",
"type_id": 0,
"id": 15,
"category_name": "Cheap SSD Hosting",
"category_id": 164,
"stock": 1,
"name": "CHEAP SSD 1",
"features": " 100 MB Disk Space\n2 GB Monthly Traffic\n1 Site Hosting \n5 E-Mail\n2 MySQL\n10 FTP Accounts\nLinux - cPanel\nLiteSpeed - Cloudlinux\nInstant Installation\n20% Cpu",
"disk_limit": "2048",
"bandwidth_limit": "10240",
"email_limit": "5",
"database_limit": "5",
"subdomain_limit": "3",
"ftp_limit": "unlimited",
"max_email_per_hour": "60",
"cpu_limit": "%20",
"server_features": [
"CloudLinux",
"LiteSpeed"
],
"pricing": [
{
"id": 52,
"amount": "5.0000",
"currency": "USD",
"format": "$5"
},
{
"id": 54,
"amount": "10.0000",
"currency": "USD",
"format": "$10"
}
]
}
]
}