Quickstart
Get up and running with the ORVEXA API in minutes. Make your first chat completion request using cURL, Python, or Node.js.
Base URL
https://api.orvexaproject.com/v1Authentication
Authorization: BearerOpenAI Compatible
Drop-in replacement for the OpenAI SDK
1Get your API key
Sign up at the ORVEXA Dashboard and navigate to the API Keys section to create your first key. You can use the test key below to try the API immediately.
Test API Key: nx-sk-dcfab6de7407c3c5f74fb627
2Make your first request
Use any OpenAI-compatible client to send a chat completion request to the ORVEXA API. The following examples use the deepseek-chat model.
bash
curl https://api.orvexaproject.com/v1/chat/completions \
-H "Authorization: Bearer nx-sk-dcfab6de7407c3c5f74fb627" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"messages": [
{"role": "user", "content": "Hello! What can you do?"}
]
}'Next steps
Learn about authentication
Understand API keys, Bearer tokens, and security best practices.
Explore available models
See which models are available and how to specify them.