# DePIN Hotspot Profile Lookup

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

Retrieves public profile data for a Helium DePIN hotspot or gateway, including owner wallet, subnetworks, obfuscated location, elevation, gain, onboarding fee, and computed deployment flags.

## Facts

- Endpoint: GET https://payai.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-8df373f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sZVSJEs35BX1f6HBJY70M

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-8df373f4
```

Example prompt: Can you pull up the full profile for Helium hotspot with entity key 11Xxxxxxxxxx — I want to know the owner wallet, which subnetworks it's on (IOT or MOBILE), its obfuscated location, elevation, antenna gain, and whether the location is asserted?

## When to prefer this

Use this endpoint when you need comprehensive public profile data for a specific Helium DePIN hotspot in a single call, including ownership, subnetwork membership, geolocation, hardware specs, and deployment status flags — especially when you need all values cited to their sources. Prefer this over manual blockchain queries or Helium Explorer scraping when you need structured, agent-consumable output with computed flags.

## Known failure modes

- Invalid or malformed base58 entity/asset key returns an error or empty result
- Hotspot not found on the Helium network returns a 404 or null profile
- Unsupported network value (non-helium) returns a validation error
- Rate limiting or payment failure returns a 402 or 429 response
- Hotspot exists on-chain but has no asserted location — location fields may be null

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

Returns a structured profile for the specified hotspot including: owner wallet address, active subnetworks (IOT, MOBILE), obfuscated location (city, state, country, H3 hex cell), elevation in meters, antenna gain in dBi, onboarding fee paid, and boolean flags for whether the location is asserted, whether the device is on multiple networks, and whether deployment is complete — each value cited to its 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-8df373f4/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)
