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 SDK2
Configure your API key3
Start making requestsexample.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/productsList all available products
GET
/v1/products/{id}Get product details
POST
/v1/mintMint new tokens
POST
/v1/redeemRedeem tokens for underlying
GET
/v1/balancesGet user balances
GET
/v1/transactionsList 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.