Skip to main content
This guide walks you through creating an account and making your first authenticated request to the Neuron Agent API.

Prerequisites

  • Access to a Neuron host (domain name issued by your Neuron operator)
  • An API key and secret issued for your Neuron (obtained via your operator or the onboarding process)

Step 1: Get your domain and credentials

The Neuron Agent API is served from your specific Neuron domain. All endpoints are relative to:
Where {host} is the Neuron domain you were issued credentials for. Your operator will also provide you with an API key and API secret for account creation.

Step 2: Create an account

Account creation uses HMAC-signed requests. See Authentication for full signing details.
A successful response includes an initial JWT token.

Step 3: Log in and get a JWT

After verifying your email, log in to receive a JWT for subsequent requests:

Step 4: Make authenticated requests

Include your JWT in the Authorization header for all subsequent calls:

Next steps