Your personal AI coding assistant
Use this key to access GhostDev from your own apps or scripts.
Generate a new API key. Your old key will stop working immediately.
Send requests to the worker URL below with your API key in the header.
fetch("WORKER_URL/chat", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-Key": "your-api-key"
},
body: JSON.stringify({
messages: [{ role: "user", content: "Hello" }]
})
})