API · Llama 3 Llama 3
Online
API Reference

Llama 3 API

One endpoint. One param. No auth required.

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

Test the endpoint and inspect the raw JSON response.