Resend-it Logo
v2.0 API

Resend-It API

Enterprise-grade APIs for asset intelligence, AI agents, blockchain tokenization, and private stablecoin deployment. Built for scale.

Quick Install
npm
npm install @resendit/sdk
yarn
yarn add @resendit/sdk
pnpm
pnpm add @resendit/sdk
28+

API Endpoints

9

Edge Functions

18

AI Tools

99.9%

Uptime SLA

API Categories

Asset Intelligence
Manage assets with AI-powered insights and predictive analytics
GET
/assets
POST
/assets
GET
/assets/{id}
PATCH
/assets/{id}

+2 more endpoints

Embeddings & Search
Vector embeddings for semantic search and RAG applications
GET
/embeddings
POST
/embeddings
POST
/embeddings/search
GET
/datasets

+1 more endpoints

Asset Tokenization
Tokenize real-world assets on Sui and Canton blockchains
GET
/tokenization
POST
/tokenization
GET
/tokenization/{id}
POST
/tokenization/fractionalize
Private Stablecoins
Deploy and manage USDC-backed stablecoins on Canton Network
GET
/stablecoins
POST
/stablecoins
POST
/stablecoins/{id}/mint
POST
/stablecoins/{id}/burn

+1 more endpoints

AI Agents
Execute intelligent AI agents for autonomous operations
GET
/agents
GET
/agents/{id}
POST
/agents/{id}/execute
Workflows
Orchestrate multi-step automated business processes
GET
/workflows
GET
/workflows/{id}
POST
/workflows/{id}/execute
Real-time Data Streams
Subscribe to live data feeds via Server-Sent Events
GET
/data-streams/agents
GET
/data-streams/workflows
GET
/data-streams/iot-sensors
OAuth 2.1 / MCP
OAuth 2.1 with PKCE for secure third-party integrations
GET
/oauth/authorize
POST
/oauth/token
GET
/oauth/clients
POST
/oauth/clients
Voice Interface
Voice-powered asset management with speech-to-text
POST
/voice/sessions
POST
/voice/upload
POST
/voice/process
POST
/voice/synthesize

Quick Start

Get started in 5 minutes
Install the SDK and start making API calls
import { createResenditClient } from '@resendit/sdk'

// Initialize the client
const client = createResenditClient({
  apiKey: process.env.RESENDIT_API_KEY!,
})

// List your assets
const { data: assets } = await client.assets.list()

// Generate AI insights for an asset
const { data: insights } = await client.assets.generateInsights(assets[0].id)

// Semantic search across your knowledge base
const { data: results } = await client.embeddings.search(
  'maintenance procedures for industrial equipment'
)

// Execute an AI agent
const { data: execution } = await client.agents.execute('agent_id', {
  prompt: 'Analyze Q3 maintenance needs and provide recommendations',
  asset_ids: assets.map(a => a.id),
})

console.log(execution.response)

Ready to get started?

Create your API key and start building with Resend-It today.

API Documentation | Resend-It Platform | Kronova