Documentation

Hyperleap AI Platform Docs

Everything you need to build, deploy, and scale AI agents. From quickstart guides to advanced API references.

Developer-First Platform

Clean APIs, comprehensive SDKs, and detailed documentation. Build custom AI workflows in minutes, not weeks.

  • Full TypeScript Support
    Type-safe SDKs with autocomplete
  • Webhooks & Real-time Events
    React to agent interactions instantly
  • OpenAPI Specification
    Generate clients in any language
Explore API Docs
// Simple REST API - works with any language
const response = await fetch(
  'https://api.hyperleap.ai/prompts/run',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer ' + process.env.API_KEY,
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      promptId: 'prompt_support',
      replacements: { query: 'How can I help?' }
    })
  }
);

const result = await response.json();
console.log(result.message);

Need help getting started?

Our team is here to help you build and deploy your first AI agent.