Available AI Models
Click on any model card to copy its ID to your clipboard
-
Total Models
-
Providers
-
Avg Context Window
Loading available models...
Authentication
Include your API key in the Authorization header with Bearer authentication.
Authorization: Bearer YOUR_API_KEY
GET /v1/models
GET
/v1/models
Retrieve all available AI models
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://neuralcore.cfd/v1/models
POST /v1/chat/completions
POST
/v1/chat/completions
Create chat completions (streaming & non-streaming)
curl -X POST https://neuralcore.cfd/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-5-codex",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"}
],
"temperature": 0.7,
"max_tokens": 2000,
"stream": false
}'
Quick Examples
# Streaming example
curl -X POST https://neuralcore.cfd/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "claude-4.5-sonnet",
"messages": [{"role": "user", "content": "Write a function"}],
"stream": true
}'
# Function calling example
curl -X POST https://neuralcore.cfd/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-4o",
"messages": [{"role": "user", "content": "What is the weather?"}],
"tools": [...]
}'
🌐 Base URL
https://neuralcore.cfd
🎯 Compatibility
OpenAI API v1
🌊 Features
Streaming + Function Calling
📊 Models
28 AI Models
Endpoints
GET
/v1/models - List available models
POST
/v1/chat/completions - Chat completions
GET
/health - Health check