API · WormGPT WormGPT
Online
API Reference

WormGPT API

One endpoint. One param. No auth required.

Base URL
https://ai.adeelbaloch.dev
Endpoint
GET  /wormgpt
ParameterTypeRequiredDescription
query string Yes Your question or prompt
Example request
HTTP
GET https://ai.adeelbaloch.dev/wormgpt?query=Hello
Response
200 OK
json
{
  "status":    "success",
  "reply": "AI generated response...",
  "model":     "WormGPT",
  "query":     "Hello",
  "creator":   { "name": "Adeel Baloch", "telegram": "sigmadev0" }
}
Code examples
javascript
const res  = await fetch('https://ai.adeelbaloch.dev/wormgpt?query=Hello');
const data = await res.json();
console.log(data.reply);
Live tester

Test the endpoint and inspect the raw JSON response.