One endpoint. One parameter. Instant AI response. No auth needed.
https://wormgpt.adeelbaloch.dev
| Parameter | Type | Required | Description |
|---|---|---|---|
query |
string | Yes | Your question or prompt for the AI |
GET https://wormgpt.adeelbaloch.dev/wormgpt?query=What is artificial intelligence?
curl "https://wormgpt.adeelbaloch.dev/wormgpt?query=Hello"
{
"status": "success",
"reply": "Artificial intelligence (AI) refers to...",
"question": "What is artificial intelligence?",
"creator": {
"name": "Adeel Baloch",
"telegram": "sigmadev0"
}
}
{
"error": "Missing 'query' parameter",
"usage": "/wormgpt?query=YOUR_QUESTION",
"creator": { "name": "Adeel Baloch" }
}
const res = await fetch('https://wormgpt.adeelbaloch.dev/wormgpt?query=Hello'); const data = await res.json(); console.log(data.reply);
import requests res = requests.get('https://wormgpt.adeelbaloch.dev/wormgpt', params={'query': 'Hello'}) print(res.json()['reply'])
$res = file_get_contents('https://wormgpt.adeelbaloch.dev/wormgpt?query=Hello'); $data = json_decode($res, true); echo $data['reply'];