# depin-coverage

> depin-coverage is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Returns coverage density and deployment opportunity data for a geography on the Helium DePIN network

## Facts

- Endpoint: GET https://payai.agentstools.dev/depin/coverage
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/depin-coverage-608def03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MfnZAQndBk2MvEDEgYSn4

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-coverage-608def03
```

Example prompt: Can you check the Helium DePIN coverage density for Austin, Texas and tell me if there's a good deployment opportunity there?

## When to prefer this

Use this endpoint when you need to assess Helium DePIN network coverage density or identify deployment opportunities for a specific geography — whether a human-readable location string (city, state, country) or a precise H3 cell. Prefer this over general mapping APIs when the query is specifically about DePIN/Helium hotspot infrastructure density and opportunity analysis.

## Known failure modes

- Missing Relay API key: returns available:false with a note rather than an error
- Invalid or unrecognized geo string: may return empty or null coverage data
- Unsupported network (only 'helium' is currently accepted): validation error
- Missing required 'geo' query parameter: request rejected
- Rate limit exceeded or payment not processed: payment/authorization error

## How this service works

Coverage density and deployment opportunity for a geography on a DePIN network. Give network (helium) and a geo string (city, state, country or an H3 cell). 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 coverage density metrics and deployment opportunity signals for the specified geography on the Helium DePIN network. If the Relay key is not configured, the response returns available: false with an explanatory note. Otherwise includes hotspot density, coverage stats, and opportunity indicators for the given city/state/country or H3 cell.

## 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": [
      "geo"
     ],
     "properties": {
      "geo": {
       "type": "string",
       "description": "A city, state, country string or an H3 cell"
      },
      "network": {
       "enum": [
        "helium"
       ],
       "type": "string",
       "description": "DePIN network id (default helium)"
      }
     }
    }
   },
   "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-coverage-608def03/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)
