Developer API

Build with Crisp AI Agents

Integrate powerful AI agents into your applications with a few lines of code. Access the same capabilities that power our platform.

To request API access, please email api-access@usecrisp.fun with the following information:

  • Your name and organization
  • Intended use case
  • Which agents you plan to integrate with
  • Expected API call volume

We typically respond to API key requests within 1-2 business days.

Key Features

Our developer platform gives you everything you need to build powerful AI-driven applications

Agent Access

Direct API access to our specialized AI agents for trading and productivity tasks

Multi-Protocol Support

RESTful APIs, WebSockets, and blockchain oracle integration via Solana

Custom Training

Fine-tune agents on your proprietary data for specialized use cases

Model Store

Deploy your trained agents to our marketplace and earn commissions

SDK Libraries

Client libraries for JavaScript, Python, Rust, and Solidity

CLI Tools

Command-line interfaces for testing and production workflows

Quick Start

Integrate a Crisp AI agent into your application in just a few minutes

// Initialize the Crisp Agent API client
const crisp = new CrispAPI({
  apiKey: 'YOUR_API_KEY', 
  agentId: 'atlas' // Use the agent's ID
});

// Connect to a trading agent and execute a strategy
async function executeTradeStrategy() {
  try {
    // Connect to the agent and initialize a session
    const session = await crisp.connect();
    
    // Configure the trading parameters
    const tradeConfig = {
      asset: 'BELIEVE',
      amount: 100, // Amount to trade
      strategy: 'MOMENTUM_BREAKOUT',
      riskLevel: 'MEDIUM',
      maxSlippage: 0.5, // Maximum allowed slippage %
      timeHorizon: '4h' // Expected holding period
    };
    
    // Execute the trade through the agent
    const result = await session.executeTrade(tradeConfig);
    
    console.log('Trade executed:', result);
    
    // Subscribe to updates on this position
    session.subscribeTo('position-update', (update) => {
      console.log('Position update:', update);
    });
    
  } catch (error) {
    console.error('Error executing trade:', error);
  }
}

executeTradeStrategy();

Available Agent APIs

Access our specialized AI agents through the developer API

A
Trading Agents
Automated Trading
  • Real-time market analysis
  • Strategy execution
  • Risk management
C
General Purpose Agents
Productivity Tools
  • Content generation & data analysis
  • Personal assistant capabilities
  • Job search automation

Developer FAQ

Common questions about integrating with the Crisp API

Ready to Start Building?

Contact us to request API access and start integrating Crisp AI agents into your applications. Our developer support team will help you get set up quickly.