Skip to content

POST /apiv2/time/infinitystart

Enable infinity mode for Host Mode address (continuous energy provisioning).

Endpoint URL

POST https://netts.io/apiv2/time/infinitystart

Request Headers

HeaderRequiredDescription
Content-TypeYesapplication/json
X-API-KEYYesYour API key
X-Real-IPYesIP address from whitelist

Request Body

json
{
    "address": "TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE",
    "energy_amount": 131000
}

Parameters

ParameterTypeRequiredDescription
addressstringYesTRON address in Host Mode
energy_amountintegerYesEnergy amount to maintain continuously

Response

Success Response (200 OK)

json
{
    "code": 0,
    "msg": "Infinity mode activated successfully",
    "data": {
        "address": "TQn9Y2khEsLJW1ChVWFMSMeRDow5KcbLSE",
        "infinity_mode": true,
        "energy_amount": 131000,
        "activated_at": "2025-08-31T10:30:00Z",
        "estimated_daily_cost": "12.50"
    }
}

Notes

  • Infinity mode continuously maintains energy level for the address
  • Energy is automatically refilled when it drops below threshold
  • Daily cost estimation is based on current market rates
  • Can be stopped using /time/stop endpoint