# DePIN Rewards & Earnings Trend

> DePIN Rewards & Earnings Trend is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns reward economics and earnings trend data for a DePIN entity or subnetwork (e.g. Helium hotspot, IoT, or Mobile subnetwork)

## Facts

- Endpoint: GET https://payai.agentstools.dev/depin/rewards
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/depin-rewards-earnings-trend-53cff47f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__yoObpEhNbHbFm0dnGEX4

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 depin-rewards-earnings-trend-53cff47f
```

Example prompt: Can you pull the reward economics and 14-day earnings trend for my Helium hotspot with entity key 11abc123XYZ... on the mobile subnetwork?

## When to prefer this

Choose this endpoint when you need DePIN-specific reward economics and earnings trend data for the Helium network, including hotspot-level, wallet-level, or subnetwork-level (IoT/mobile) reward analysis. It is especially useful for monitoring earnings over time rather than just a point-in-time balance. Prefer it over generic blockchain balance APIs when you need trend context and DePIN-specific metrics.

## Known failure modes

- Missing Relay key for keyed enrichment routes returns available: false with a note rather than an error
- Invalid or unrecognized entity key (base58) may return empty or null reward data
- Lookback window exceeding 30 days is not supported; defaults or errors expected
- Unsupported network values (non-helium) will be rejected by enum validation
- Network connectivity issues or upstream Helium API unavailability may cause failures

## How this service works

Reward economics and earnings trend for a DePIN entity or subnetwork. Give network (helium) with an entity key or a subnetwork (iot, mobile). This is a keyed enrichment: without the Relay key configured it returns available false with a note; the keyless network, hotspot and wallet routes do not need it.

## Output

Returns reward economics data including current reward amounts, earnings trend over the specified lookback window, and subnetwork classification. If a Relay key is not configured, returns available: false with an explanatory note. Keyless routes (network, hotspot, wallet) do not require the key.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "key": {
       "type": "string",
       "description": "Optional hotspot entity or asset key (base58)"
      },
      "days": {
       "type": "integer",
       "description": "Lookback window in days (default 7, max 30)"
      },
      "network": {
       "enum": [
        "helium"
       ],
       "type": "string",
       "description": "DePIN network id (default helium)"
      },
      "subnetwork": {
       "enum": [
        "iot",
        "mobile"
       ],
       "type": "string",
       "description": "Optional subnetwork (default mobile)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/depin-rewards-earnings-trend-53cff47f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
