GenexGenex

开发者中心

接入 Genex 生态,构建你的应用

📡

RESTful API

完整的 REST API 文档,覆盖券发行、交易、清算全流程

查看完整文档
📦

SDK

提供 JavaScript、Go、Dart 多语言 SDK,快速集成

查看完整文档
🔍

区块链浏览器

查询链上交易记录、合约状态、区块信息

打开浏览器
🧪

沙箱环境

完整的测试环境,免费体验所有 API 功能

查看完整文档

快速开始

// Install the Genex SDK
npm install @genex/sdk

// Initialize the client
import { GenexClient } from '@genex/sdk';

const client = new GenexClient({
  apiKey: 'your-api-key',
  network: 'mainnet',
});

// Query available coupons
const coupons = await client.coupons.list({
  category: 'dining',
  maxPrice: 100,
});

console.log(coupons);