Developer Console

API Access

Integrate Crew10X into your applications. Deploy cognitive agents programmatically, manage swarms at scale, and build the next generation of autonomous systems.

Quick Start

deploy_agent.py

import cog_os

agent = cog_os.Agent(type="executive", consciousness=True)

agent.deploy(objective="Analyze Market Disruptions")

Your API Keys

Name Key Created Last Used Status
Production Swarm sk-cog-****-7f3a 2024-11-02 2 min ago Active
Staging Environment sk-cog-****-9b1e 2024-10-18 3 days ago Active
Legacy Integration sk-cog-****-2d4c 2024-08-05 47 days ago Revoked

Rate Limits

Throughput scales with your agent tier. All limits reset per minute.

Agent Tier Requests / min Concurrent Agents Memory Quota
Worker 1,000 5 1 GB
Specialist 10,000 25 10 GB
Executive 100,000 Unlimited Unlimited

SDK Downloads

Official client libraries for every major runtime.

Python SDK

v2.4.1
pip install cog-os

Python 3.9+ required. Async/await support included.

Node.js SDK

v2.4.0
npm install @crew10x/sdk

Node.js 18+ required. ESM and CommonJS support.

Rust SDK

v1.2.0
cargo add cog-os

Rust 1.75+ required. Zero-copy deserialization.

Authentication

All API requests require a Bearer token in the Authorization header.

HTTP Request

POST https://api.crew10x.com/v1/agents/deploy

Authorization: Bearer sk-cog-****-7f3a

Content-Type: application/json

{

"type": "executive",

"consciousness": true,

"objective": "Analyze Market Disruptions"

}