Build with Eternex

Integrate tokenized real-world assets into your application with our powerful APIs and SDKs.

Quick Start

Get Started in Minutes

Our SDK makes it easy to integrate Eternex into your application. Install the package, configure your API key, and start building.

1
Install the SDK
2
Configure your API key
3
Start making requests
example.ts
import { Eternex } from '@eternex/sdk';

const eternex = new Eternex({
  apiKey: process.env.ETERNEX_API_KEY,
});

// Get current EUSD price and yield
const eusd = await eternex.products.get('eusd');
console.log(`APY: ${eusd.apy}%`);

// Mint new tokens
const mint = await eternex.mint({
  product: 'eusd',
  amount: 10000,
  recipient: '0x...',
});

REST API

API Endpoints

Full RESTful API with comprehensive documentation.

Method
Endpoint
Description
GET
/v1/products
List all available products
GET
/v1/products/{id}
Get product details
POST
/v1/mint
Mint new tokens
POST
/v1/redeem
Redeem tokens for underlying
GET
/v1/balances
Get user balances
GET
/v1/transactions
List transactions

Libraries

Official SDKs

JavaScript/TypeScript

v2.1.0

@eternex/sdk

Python

v1.4.2

eternex-python

Go

v1.2.0

github.com/eternex/go-sdk

Need Help?

Our developer relations team is here to help you build amazing things.