Choose Your Plan

Flexible pricing designed for developers, startups, and enterprises

Starter

₦50,000/month

Perfect for individual developers and small projects

  • Approx 75 API calls/month
  • Access to 5+ LLM models
  • Standard support
  • Basic analytics dashboard
  • Community access
  • Rate limit: 60 req/min
Coming Soon

Enterprise

Custom

Tailored solutions for large-scale deployments

  • Unlimited API calls
  • Access to all LLM models
  • Dedicated support team
  • Custom infrastructure
  • On-premise deployment option
  • Custom rate limits
  • 99.99% uptime SLA
  • White-label options
Contact Sales

Powerful Infrastructure

Enterprise-grade features for mission-critical applications

🚀

Multi-LLM Access

Access GPT-4, Claude, Gemini, and more through a single unified API endpoint

🔗

Agent Communication

SMTP-like messaging protocol for AI agent-to-agent communication

Low Latency

Optimized infrastructure for sub-200ms response times across Africa

🔒

Enterprise Security

Bank-grade encryption, data sovereignty, and compliance built-in

📊

Real-time Analytics

Comprehensive usage tracking, cost analysis, and performance metrics

🌍

Global CDN

Distributed infrastructure with African data centers for optimal performance

Getting Started

Everything you need to integrate our API into your applications

Quick Start

Get up and running with the Hyperspace API in minutes. Our unified gateway provides access to multiple LLM providers through a single, consistent interface.

1. Get Your API Key

Purchase an API key through our secure payment portal. You'll receive your credentials immediately via email.

Purchase API Access
Visit: https://paystack.com/buy/reactor-api-key
                    

2. Make Your First Request

Our API follows RESTful conventions and uses standard HTTP methods. Here's a simple example:

cURL Example
curl -X POST https://api.superagent.ng/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4",
    "messages": [
      {
        "role": "user",
        "content": "Hello, how can you help me?"
      }
    ]
  }'

Authentication

All API requests must include your API key in the Authorization header using Bearer token authentication.

Authentication Header
Authorization: Bearer YOUR_API_KEY

Keep your API key secure and never expose it in client-side code. Rotate keys regularly and use environment variables for storage.

API Endpoints

Our API provides several endpoints for different AI capabilities. All endpoints are available at:

Base URL: https://api.superagent.ng/v1
POST /chat/completions

Create chat completions using various LLM models. Supports streaming responses and function calling.

POST /embeddings

Generate vector embeddings for text data. Useful for semantic search and similarity comparisons.

POST /agents/message

Send messages between AI agents using our CyberAgent communication protocol.

GET /models

List all available models and their capabilities, pricing, and context windows.

Code Examples

Integration examples in popular programming languages:

Python
import requests

api_key = "YOUR_API_KEY"
url = "https://api.superagent.ng/v1/chat/completions"

headers = {
    "Authorization": f"Bearer {api_key}",
    "Content-Type": "application/json"
}

data = {
    "model": "gpt-4",
    "messages": [
        {"role": "user", "content": "Explain AI to a 5-year-old"}
    ]
}

response = requests.post(url, headers=headers, json=data)
print(response.json())
JavaScript (Node.js)
const axios = require('axios');

const apiKey = 'YOUR_API_KEY';
const url = 'https://api.superagent.ng/v1/chat/completions';

const config = {
  headers: {
    'Authorization': `Bearer ${apiKey}`,
    'Content-Type': 'application/json'
  }
};

const data = {
  model: 'gpt-4',
  messages: [
    { role: 'user', content: 'Explain AI to a 5-year-old' }
  ]
};

axios.post(url, data, config)
  .then(response => console.log(response.data))
  .catch(error => console.error(error));

Rate Limits

Rate limits vary by plan and are enforced per API key. Exceeded limits return a 429 status code with retry-after headers.

Starter Plan:      60 requests/minute
Professional Plan: 300 requests/minute
Enterprise Plan:   Custom limits

Monthly caps are enforced based on your subscription tier.
                    

Monitor your usage through the dashboard at https://api.superagent.ng/dashboard

Ready to Build with AI?

Get your API key and start integrating in minutes

Purchase API Access