🔄 Zeeverse GEX API - Community Trading Guide

Build your own trading bots, price trackers, and portfolio tools for the Zeeverse offchain item exchange.


Base URL

<https://api.zee-verse.com>

Authentication

All endpoints require a Bearer token. Get one by logging in:

curl -X POST <https://api.zee-verse.com/v2/account/login> \\\\
  -H "Content-Type: application/json" \\\\
  -d '{"email": "[email protected]", "password": "your_password"}'

Response:

{
  "accessToken": "eyJ...",
  "refreshToken": "eyJ...",
  "expiresAt": "2026-03-24T12:00:00Z"
}

Use the accessToken in all subsequent requests:

Authorization: Bearer <accessToken>

Token refresh (before expiry):

curl -X POST <https://api.zee-verse.com/v2/account/refresh> \\\\
  -H "Content-Type: application/json" \\\\
  -H "Authorization: Bearer <accessToken>" \\\\
  -d '{"refreshToken": "<refreshToken>"}'

📊 Market Data (Read-Only)

Get All Pools

Returns all active GEX trading pools with current reserves.

GET /v2/offchain-gex/pools

Response: