Service Status
Monitor the real-time health of the ChatGPT Bridge.
Quick Test
Test the bridge directly. Make sure you use a valid Schollora-Api-Key.
Usage Analytics (Last 7 Days)
Visualize the traffic hitting your API keys over the last week.
API Key Management
Generate, view, and manage API keys used by your applications to connect securely.
| Name | API Key | Usage Count | Created At | Actions |
|---|
Provider API Portfolio
Manage your third-party API keys (Grok, Claude, Gemini, OpenAI). The system will route external requests through these keys in order of priority. If all fail, it falls back to the Scraper API.
| Provider | API Key (Masked) | Priority | Actions |
|---|
Free Model (Scraper Fallback)
Enable or disable the scraper fallback when all provider APIs fail.
How to Use (Developer Docs)
Use your generated API key and the base URL to connect to the bridge from other apps.
Base URL: http://localhost:4001
Endpoint: POST /api/generate
Headers: Schollora-Api-Key: <YOUR_API_KEY>
curl -X POST http://localhost:4001/api/generate \
-H "Content-Type: application/json" \
-H "Schollora-Api-Key: YOUR_KEY_HERE" \
-d '{"message": "Hello!", "userId": "YOUR_ACCOUNT_ID"}'
const response = await fetch('http://localhost:4001/api/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Schollora-Api-Key': 'YOUR_KEY_HERE'
},
body: JSON.stringify({ message: 'Hello!', userId: 'YOUR_ACCOUNT_ID' })
});
const data = await response.json();
console.log(data.reply);
import requests
response = requests.post(
"http://localhost:4001/api/generate",
headers={"Schollora-Api-Key": "YOUR_KEY_HERE"},
json={"message": "Hello!", "userId": "YOUR_ACCOUNT_ID"}
)
print(response.json()["reply"])