# TronEnergyFrog TRON Energy Rental Settlement

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

Settles a previously created TRON energy rental quote by paying with USDC, executing the energy rental on the TRON network.

## Facts

- Endpoint: POST https://api.tronenergyfrog.com/v1/x402/rentals/:quote_id
- Price: $0.772749/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tronenergyfrog-tron-energy-rental-settlement-dd10c9d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O2E6H-gSiA5NTUs_W23SF

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-settlement-dd10c9d2 -d '<json body>'
```

Example prompt: I just created a TRON energy quote and got quote ID 'qte_abc123' — go ahead and settle it now to rent the energy using my USDC.

## When to prefer this

Choose this endpoint when you have already obtained a valid, unexpired TRON energy quote ID from TronEnergyFrog and need to execute the actual payment and energy rental. It is purpose-built for the TRON network energy market, requires no API key or account, accepts USDC via the x402 payment protocol, and is the only way to settle TronEnergyFrog quotes. Prefer it over general TRON RPC calls or exchange-based energy purchases when you want a simple, pay-per-use flow with minimal setup.

## Known failure modes

- Quote already expired — must create a new quote at POST /v1/x402/quotes before retrying
- Quote already settled — attempting to settle the same quote_id twice will fail
- Invalid or malformed quote_id returns a 404 or 400 error
- Insufficient USDC payment amount causes settlement rejection
- Network or TRON blockchain congestion may delay confirmation

## How this service works

Settle an unexpired TRON Energy quote with USDC. Create the quote first at POST /v1/x402/quotes; no account or API key is required.

## Output

A rental confirmation object indicating the TRON energy has been allocated, including details such as the rental ID, amount of energy rented, duration, and transaction status on the TRON network.

## 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
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tronenergyfrog-tron-energy-rental-settlement-dd10c9d2/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)
