EEMBEN

Build on EEMBEN

Access powerful APIs, development tools, and infrastructure to create the next generation of web3 and AI-powered applications.

Open APIs

Leverage our comprehensive REST and GraphQL APIs to integrate EEMBEN's web3 identity and AI infrastructure into your applications with minimal effort.

Developer SDKs

Access our JavaScript, Python, and Rust SDKs with full TypeScript support to build, test, and deploy applications that leverage EEMBEN's secure infrastructure.

Analytics

Monitor your application's performance and usage patterns in real-time through our enterprise-grade analytics dashboard and metrics APIs.

How to Get Started

1

Create Account

Start by creating a developer account to gain access to our sandbox environment and API keys.

Sign Up →
2

Explore Docs

Dive into our comprehensive documentation and API spec to understand the available endpoints.

View Docs →
3

Build & Test

Use our development tools, emulators, and testing sandboxes to build and iterate quickly.

Test Now →

Quick Code Example


// Connect to EEMBEN API
const client = new EEMBEN.Client({
  apiKey: 'your_api_key_here',
  env: 'sandbox'
});

// Create a decentralized ID
const did = await client.identities.create({
  type: 'ethereum',
  walletAddress: '0x1234567890abcdef',
  encryptionKey: 'random_string_123'
});

console.log('Created DID:', did);