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/sdkyarn
yarn add @resendit/sdkpnpm
pnpm add @resendit/sdk28+
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
/assetsPOST
/assetsGET
/assets/{id}PATCH
/assets/{id}+2 more endpoints
Embeddings & Search
Vector embeddings for semantic search and RAG applications
GET
/embeddingsPOST
/embeddingsPOST
/embeddings/searchGET
/datasets+1 more endpoints
Asset Tokenization
Tokenize real-world assets on Sui and Canton blockchains
GET
/tokenizationPOST
/tokenizationGET
/tokenization/{id}POST
/tokenization/fractionalizePrivate Stablecoins
Deploy and manage USDC-backed stablecoins on Canton Network
GET
/stablecoinsPOST
/stablecoinsPOST
/stablecoins/{id}/mintPOST
/stablecoins/{id}/burn+1 more endpoints
AI Agents
Execute intelligent AI agents for autonomous operations
GET
/agentsGET
/agents/{id}POST
/agents/{id}/executeWorkflows
Orchestrate multi-step automated business processes
GET
/workflowsGET
/workflows/{id}POST
/workflows/{id}/executeReal-time Data Streams
Subscribe to live data feeds via Server-Sent Events
GET
/data-streams/agentsGET
/data-streams/workflowsGET
/data-streams/iot-sensorsOAuth 2.1 / MCP
OAuth 2.1 with PKCE for secure third-party integrations
GET
/oauth/authorizePOST
/oauth/tokenGET
/oauth/clientsPOST
/oauth/clientsVoice Interface
Voice-powered asset management with speech-to-text
POST
/voice/sessionsPOST
/voice/uploadPOST
/voice/processPOST
/voice/synthesizeQuick 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.