Skip to main content

Welcome to Comput3 API

The Comput3 Network API provides access to our distributed GPU computing infrastructure. Our API is built on top of vLLM (c3-vllm) and offers high-throughput serving for large language models and GPU compute operations.

GPU Operations API

View the complete OpenAPI specification

Authentication

All Comput3 API endpoints require authentication using API keys. You can obtain your API key from the Comput3 Dashboard.

API Key Authentication

Include your API key in the Authorization header using the Bearer token format:
Authorization: Bearer YOUR_API_KEY

Example Request

curl
curl -X GET "https://api.comput3.ai/v1/models" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
Keep your API keys secure and never expose them in client-side code. Store them as environment variables or in secure configuration files.

Rate Limits

API requests are subject to rate limiting to ensure fair usage:
  • Free tier: 100 requests per minute
  • Pro tier: 1,000 requests per minute
  • Enterprise: Custom limits available

Base URL

All API requests should be made to:
https://api.comput3.ai/v1