Build powerful LLM applications with our comprehensive APIs. Get started in minutes with RESTful endpoints, SDKs, and detailed documentation.
Get up and running with NeuralyxAI APIs in under 5 minutes
1. Install the SDK
pip install neuralyxai
2. Make your first request
import neuralyxai client = neuralyxai.Client(api_key="your-api-key") response = client.chat.completions.create( model="neuralyx-gpt-4", messages=[ {"role": "user", "content": "Hello, world!"} ], max_tokens=100 ) print(response.choices[0].message.content)
Comprehensive REST API for all NeuralyxAI services
/v1/chat/completions
/v1/embeddings
/v1/rag/search
/v1/fine-tuning
/v1/voice/stream
/v1/models
Include your API key in the Authorization header:
Authorization: Bearer your-api-key-here
Security Notice: Keep your API keys secure. Never expose them in client-side code or public repositories.
Everything you need to build with NeuralyxAI