# DePIN Coverage Density & Deployment Opportunity Lookup

> DePIN Coverage Density & Deployment Opportunity Lookup is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Returns coverage density and deployment opportunity metrics for a geography on a DePIN network (e.g. Helium), given a city/state/country string or H3 cell identifier.

## Facts

- Endpoint: GET https://api.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-density-deployment-opportunity-lookup-6136efc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SF-fUBvZ-SafmcPV4ydey

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-density-deployment-opportunity-lookup-6136efc6
```

Example prompt: What's the Helium network coverage density in Austin, Texas — is there a good deployment opportunity there or is it already saturated?

## When to prefer this

Use this endpoint when an agent needs to assess DePIN network coverage density or hotspot deployment viability for a specific geographic area on the Helium network. Ideal for DePIN investment research, hotspot placement decisions, or network expansion analysis. Prefer over generic mapping APIs when the specific question is about decentralized wireless infrastructure density.

## Known failure modes

- Missing or invalid 'geo' parameter returns an error
- No Relay key configured returns available: false with a note
- Unsupported network value (only 'helium' is accepted) returns an error
- Ambiguous geo string that cannot be resolved to a geography
- H3 cell string that is malformed or unrecognized
- Payment not completed (x402) returns 402 Payment Required

## 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 a coverage density assessment and deployment opportunity score for the specified geography on the Helium DePIN network. Includes whether the area is available for analysis and, if a Relay key is not configured, returns available: false with an explanatory note.

## 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-density-deployment-opportunity-lookup-6136efc6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
