List Product IDs & Prices

List all Product IDs and prices

List URL:

GEThttps://api.hyperleaf.com/api/product/list

Get Example

curl https://api.hyperleaf.com/api/product/list?key=mykey

Response Examples


{
    "status": "ok",
    "count": 9,
    "data": {
        "1": {
            "id": "1",
            "plan": "5",
            "cpu": "1",
            "ram": "1",
            "storage": "20",
            "transfer": "1000",
            "cost": "5.0000",
            "hourly": "0.0060"
        },
        "2": {
            "id": "2",
            "plan": "10",
            "cpu": "2",
            "ram": "2",
            "storage": "40",
            "transfer": "2000",
            "cost": "10.0000",
            "hourly": "0.0120"
        },
        "3": {
            "id": "3",
            "plan": "20",
            "cpu": "4",
            "ram": "4",
            "storage": "60",
            "transfer": "3000",
            "cost": "20.0000",
            "hourly": "0.0240"
        },
        "4": {
            "id": "4",
            "plan": "40",
            "cpu": "8",
            "ram": "8",
            "storage": "120",
            "transfer": "4000",
            "cost": "40.0000",
            "hourly": "0.0480"
        },
        "5": {
            "id": "5",
            "plan": "80",
            "cpu": "16",
            "ram": "16",
            "storage": "180",
            "transfer": "6000",
            "cost": "80.0000",
            "hourly": "0.0960"
        },
        "6": {
            "id": "6",
            "plan": "160",
            "cpu": "32",
            "ram": "32",
            "storage": "200",
            "transfer": "8000",
            "cost": "160.0000",
            "hourly": "0.1900"
        },
        "7": {
            "id": "7",
            "plan": "180",
            "cpu": "64",
            "ram": "64",
            "storage": "220",
            "transfer": "12000",
            "cost": "180.0000",
            "hourly": "0.3800"
        },
        "8": {
            "id": "8",
            "plan": "640",
            "cpu": "128",
            "ram": "128",
            "storage": "240",
            "transfer": "14000",
            "cost": "640.0000",
            "hourly": "0.7600"
        },
        "999": {
            "plan": 999,
            "cpu": 9,
            "ram": 9,
            "storage": 90,
            "transfer": "1000",
            "cost": 9,
            "hourly": "0.006",
            "description": "Dedicated Custom",
            "enabled": "yes"
        }
    }
}

Last updated