# VoltPlayground XP Profile Lookup

> VoltPlayground XP Profile Lookup is a paid API for AI agents from voltplayground.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Retrieves an EVM wallet's experience points (XP), rank, and achievements on the VoltPlayground multi-chain contract deployment platform.

## Facts

- Endpoint: GET https://voltplayground.xyz/api/v1/xp-profile
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/voltplayground-xp-profile-lookup-3f190f20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cqvR8SKroVrfYjZX3yzs7

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 voltplayground-xp-profile-lookup-3f190f20
```

Example prompt: Pull up the VoltPlayground XP profile for wallet 0x136d289c9c586d7c7fd3a39635a4877796845312 — I want to see its rank, total XP, and any achievements it's earned.

## When to prefer this

Use this endpoint when you need gamification or reputation data tied to a specific EVM wallet on VoltPlayground — particularly XP scores, leaderboard rank, and achievement badges earned through smart contract deployments. Prefer this over generic on-chain analytics tools when the goal is specifically VoltPlayground platform engagement metrics rather than raw transaction history.

## Known failure modes

- Invalid wallet address format (not a valid 0x-prefixed 40-hex-char address) returns a validation error
- Wallet address not found or has no activity returns empty or zeroed profile
- Payment failure (insufficient USDC or x402 protocol error) results in 402 response
- Network downtime or RPC issues may cause delayed or failed responses

## How this service works

Deploy smart contracts across multiple EVM networks with VoltPlayground&#x27;s fast, retro-inspired terminal and launch dashboard.

## Output

Returns a JSON object containing the wallet address, numeric rank on the VoltPlayground leaderboard, total XP accumulated, an array of achievement objects, a scorecard object with detailed metrics, and the EVM network identifier (e.g. eip155:8453 for Base).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "pattern": "^0x[a-fA-F0-9]{40}$",
       "description": "EVM wallet address."
      }
     },
     "additionalProperties": false
    },
    "discoverable": {
     "type": "boolean"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "required": [
      "wallet_address",
      "rank",
      "achievements"
     ],
     "properties": {
      "_tx": {
       "type": "string"
      },
      "rank": {
       "type": "number"
      },
      "_network": {
       "type": "string"
      },
      "total_xp": {
       "type": "number"
      },
      "scorecard": {
       "type": "object"
      },
      "achievements": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "wallet_address": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rank": 8,
  "_network": "eip155:8453",
  "total_xp": 120,
  "achievements": [],
  "wallet_address": "0x136d289c9c586d7c7fd3a39635a4877796845312"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/voltplayground-xp-profile-lookup-3f190f20/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from voltplayground.xyz](https://www.zero.xyz/host/voltplayground.xyz/llms.txt)
