Try Our API Right Now
No signup required. Experience the power of Fulxion API in real-time with our interactive sandbox.
Request
Create a new HD wallet for a user
/api/v1/wallets{
"method": "POST",
"url": "https://sandbox.fulxion.io/api/v1/wallets",
"headers": {
"Authorization": "Bearer sandbox_pk_test_1234567890",
"Content-Type": "application/json"
},
"body": {
"user_id": "user_demo_123",
"currency": "BTC",
"type": "HD_WALLET"
}
}Response
Click "Execute API Call" to see the response
Lightning Fast
Average response time under 50ms
RESTful & Simple
Clean, intuitive API design
Production Ready
Built for high availability
コードが自律的な資本になる場所
API
金融イノベーションのためのエンジン
Encrypia Fulxion SDKは、洗練された金融商品を構築するための包括的なエンジンです。基礎となるプロトコルの複雑さと格闘することなく、抽象的な概念から、グローバル規模でライブで、コンプライアンスに準拠し、安全な金融商品へと移行します。
Unified API for All Protocols
Integrate once. Access a universe of protocols like Ethereum, Solana, and more through a single, elegant API.
Enterprise-Grade Security
Build on a foundation of institutional-grade security, with MPC, hardware enclaves, and programmable policies.
High-Velocity Settlement
Our infrastructure is built for high-throughput and low-latency, ensuring your application scales effortlessly.
Axiom™: The Cognitive Layer
Use natural language to interact with our API, generate code, and automate complex financial workflows.
// Encrypia Fulxion SDK: Advanced Multi-Signature Wallet Operations
import { EncrypiaFulxion, WalletType, Policy } from '@encrypia-fulxion/sdk';
// Initialize the SDK with your API credentials
const encrypiaFulxion = new EncrypiaFulxion({
apiKey: process.env.ENCRYPIA_FULXION_API_KEY,
privateKey: process.env.ENCRYPIA_FULXION_PRIVATE_KEY,
});
async function createSecureTreasury() {
// Define a 2-of-3 multi-signature policy for the wallet
const policy = new Policy({
rules: [
{ required: 2, signers: ['signer-key-1', 'signer-key-2', 'signer-key-3'] },
],
});
// Create a new multi-sig wallet for treasury operations
const wallet = await encrypiaFulxion.wallets.create({
type: WalletType.MULTI_SIG,
policy: policy,
metadata: { name: 'Corporate Treasury' },
});
// Propose a transaction from the new wallet
const proposal = await encrypiaFulxion.proposals.create({
walletId: wallet.id,
// ... transaction details
});
console.log('New treasury wallet created:', wallet.id);
console.log('Transaction proposal submitted:', proposal.id);
return { wallet, proposal };
}
開発者向けに構築
ドキュメント
Create a Wallet
3 lines to create a multi-currency HD wallet
import { FulxionClient } from '@fulxion/sdk';
const client = new FulxionClient(process.env.FULXION_API_KEY);
// Create HD wallet
const wallet = await client.wallets.create({
user_id: 'user_123',
currency: 'BTC',
type: 'HD_WALLET'
});
console.log(wallet.address); // bc1q...
console.log(wallet.hd_path); // m/44'/0'/0'/0/0お気に入りの言語で利用可能:
Sub-50ms Response
Lightning-fast API
高可用性
Enterprise reliability
10+ SDKs
Every language covered
Great Docs
Examples for everything