Deployment

Deploy your AI agents to production and manage API access.

Once you have tested and finalized the features for your application, those features will be integrated in your preview application and here you will get your final application.

API Endpoint

Copy the endpoint URL for your deployed application to start integrating with your systems.

https://api.qubitz.ai/{your-agent}/invoke

API Keys

Create API keys to authenticate your requests. Each project supports up to 2 API keys. Keys are shown only once at generation -- store them securely.

Quick Start

See example code for calling your agent API. You can download the Developers Guide for your reference.

curl -X POST https://api.qubitz.ai/{your-agent}/invoke \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"prompt": "Hello", "session_id": "unique-session-id"}'

Session Management

The API supports conversation continuity through session IDs:

  • Same session_id -- Continues the conversation with full context
  • New session_id -- Starts a fresh conversation

For multi-user applications, use actor_id to isolate conversations and preferences per user.