# DePIN Hotspot Profile Lookup

> DePIN Hotspot Profile Lookup is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a comprehensive profile of a Helium DePIN hotspot or gateway including owner wallet, subnetwork info, obfuscated location, elevation, gain, onboarding fee, and computed deployment flags from public on-chain data.

## Facts

- Endpoint: GET https://api.agentstools.dev/depin/hotspot
- 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/depin-hotspot-profile-lookup-1df251e8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bgheYmLOz__J6vJ6oDVwp

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-hotspot-profile-lookup-1df251e8
```

Example prompt: Can you pull up the full profile for Helium hotspot with entity key 112qB3YaH5bZkCnKA5uRH7tBtZp1SfBLkDGMmGzRQBPBKDdqcEm — I want to know the owner wallet, which subnetworks it's on, its obfuscated location, elevation, gain, and whether its location has been asserted?

## When to prefer this

Use this endpoint when you need structured, cited profile data about a specific Helium DePIN hotspot or gateway, particularly when you want multi-dimensional metadata (location, ownership, subnetworks, deployment flags) in a single call rather than querying multiple Helium chain APIs separately. Prefer this over raw blockchain lookups when you need computed flags and normalized output.

## Known failure modes

- Invalid or malformed base58 entity/asset key returns an error
- Hotspot key not found on the Helium network returns a not-found response
- Unsupported network value (anything other than 'helium') returns a validation error
- Payment failure or insufficient USDC balance prevents the call from executing
- Rate limiting or upstream Helium API unavailability may cause timeouts

## How this service works

Profile of a DePIN hotspot or gateway from public data. Give network (helium) and an entity or asset key and get owner wallet, subnetworks (IOT, MOBILE), obfuscated location (city, state, country and H3 cell), elevation, gain, onboarding fee and computed flags for asserted location, multi-network and deployment completeness. Each value is cited to its source.

## Output

A JSON object containing the hotspot's owner wallet address, active subnetworks (IOT, MOBILE), obfuscated location (city, state, country, H3 cell), elevation, antenna gain, onboarding fee, and computed boolean flags for asserted location, multi-network participation, and deployment completeness. Each field is cited to its data source.

## 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": [
      "key"
     ],
     "properties": {
      "key": {
       "type": "string",
       "description": "Hotspot entity key or asset key (base58)"
      },
      "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-hotspot-profile-lookup-1df251e8/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)
