Quick Start Guide
Get up and running with NeuraAI in minutes. This guide will walk you through making your first API call.
Installation
Since NeuraAI is fully compatible with the OpenAI interface, you can use the official OpenAI Python client:
Get Your API Key
- Sign up at neura-ai.app
- Navigate to your dashboard
- Generate a new API key
- Store it securely as an environment variable
Your First Request
Here’s a simple example to get started with text generation:
List Available Models
Discover which models are available for your use case:
Common Parameters
When making requests, you’ll frequently use these parameters:
- model - The AI model to use (e.g.,
gpt-5,gemini-2.5-pro) - messages - Array of conversation messages with role and content
- temperature - Controls randomness (0.0 = deterministic, 2.0 = very random)
- max_tokens - Maximum length of the generated response
- stream - Enable streaming responses for real-time output
Next Steps
Now that you’ve made your first request:
- Explore Text Generation for more advanced examples
- Learn about Different Models and their capabilities
- Try Image Generation or Audio Processing
- Implement Function Calling for dynamic interactions