ホームに戻る
開発者向け

開発者体験を最優先

私たち自身が使いたいと思う形でFulxionを構築しました。クリーンなAPI、包括的なSDK、そして本当に役立つドキュメント。

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

POST/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

お気に入りの言語で利用可能:

TypeScriptPythonRustJavaRubyPHPC#SwiftKotlin

Sub-50ms Response

Lightning-fast API

高可用性

Enterprise reliability

10+ SDKs

Every language covered

Great Docs

Examples for everything

APIリファレンス

Complete API documentation with examples for every endpoint

Browse Docs

Interactive Tutorial

Step-by-step guide to build your first app in 15 minutes

Start Tutorial

Code Examples

100+ code examples for common use cases and patterns

View Examples

公式SDK

🐍
Python
v1.0.0
💚
Node.js
v1.0.0
🔵
Go
v1.0.0
💎
Ruby
v1.0.0

構築を始める準備はできましたか?

APIキーを取得して、数分で統合を開始しましょう。