Quickstart

Make your first API call

Get an API key from Studio and call the Hyperleap API from any language.

Step-by-step

  1. 1
    Create an API key
    In Studio, go to Settings → API Keys.
  2. 2
    Run a request
    Use the API key in the Authorization header.
    curl https://api.hyperleap.ai/v1/agents \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json"
  3. 3
    Explore examples
    Copy a production-ready snippet and adapt it.
Security note
Never expose API keys in client-side code. Use server-side calls and environment variables.