# TronEnergyFrog TRON Energy Rental Checkout

> TronEnergyFrog TRON Energy Rental Checkout is a paid API for AI agents from api.tronenergyfrog.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Executes a TRON energy rental transaction by fulfilling a pre-quoted rental order identified by quote ID

## Facts

- Endpoint: POST https://api.tronenergyfrog.com/v1/x402/rentals/%7Bquote_id%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tronenergyfrog-tron-energy-rental-checkout-7315aab1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_npeicLJoQR_zSlHfN1nFn

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tronenergyfrog-tron-energy-rental-checkout-7315aab1 -d '<json body>'
```

Example prompt: Go ahead and complete the TRON energy rental checkout for quote ID 8bb302b8-c245-48a6-94f7-90f00652a32d on TronEnergyFrog.

## When to prefer this

Use this endpoint when you have already generated a TRON energy rental quote (with a valid quote_id) and are ready to execute and pay for the rental. This is the checkout/fulfillment step, not the quoting step — prefer it over alternatives when you need programmatic, API-driven TRON energy procurement without interacting with a UI, especially in automated agent workflows that manage TRON wallet fee optimization.

## Known failure modes

- Invalid or expired quote_id returns an error or payment_required status
- Payment not received or insufficient USDC causes transaction to fail
- Quote already fulfilled — duplicate POST to same quote_id rejected
- Network or blockchain congestion may delay rental execution
- Malformed quote_id UUID format causes request rejection

## How this service works

TronEnergyFrog provides live TRON Energy prices, wallet fee checks, rental checkout, wallet activation, and API tools using only public wallet addresses.

## Output

Returns a JSON object with the rental status (e.g. 'payment_required'), the quote_id that was processed, and a status_url path where the agent can poll for updates on the rental fulfillment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "quote_id"
     ],
     "properties": {
      "quote_id": {
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "quote_id",
      "status",
      "status_url"
     ],
     "properties": {
      "status": {
       "type": "string"
      },
      "quote_id": {
       "type": "string"
      },
      "status_url": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "payment_required",
  "quote_id": "8bb302b8-c245-48a6-94f7-90f00652a32d",
  "status_url": "/v1/x402/rentals/8bb302b8-c245-48a6-94f7-90f00652a32d"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tronenergyfrog-tron-energy-rental-checkout-7315aab1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tronenergyfrog.com](https://www.zero.xyz/host/api.tronenergyfrog.com/llms.txt)
