Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt

Use this file to discover all available pages before exploring further.

Quickstart

This guide walks you through making your first request to the Neuron API.

Prerequisites

  • A Neuro account with API access enabled
  • Your API key (see Authentication)

Step 1: Get your API key

Log in to your Neuro dashboard and navigate to Settings → API Keys to generate a new key.

Step 2: Make your first request

curl -X GET https://api.neuro-tech.io/v1/ping \
  -H "Authorization: Bearer YOUR_API_KEY"

Step 3: Inspect the response

A successful response returns:
{
  "status": "ok",
  "timestamp": "2026-05-13T00:00:00Z"
}

Next steps

  • Read the API Basics guide to understand the full request/response model.
  • Set up proper Authentication for production use.