Llama Chatbot API
AI Assistant From Llama Large Language Model API, Unlimited FREE & Fast.
Endpoint
GET
https://api.lmnx9.shop/ai?model=llama&q=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/ai?model=llama&q=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/ai?model=llama&q=")
.then(function(r){return r.json()})
.then(function(d){console.log(d)});Python
import requests
r = requests.get("https://api.lmnx9.shop/ai?model=llama&q=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/ai?model=llama&q=");
print_r(json_decode($d, true));Example Response
{
"success": true,
"developer": "DARK LMNx9",
"telegram": "@x_LMNx9",
"website": "https://lmnx9.shop",
"data": {
"status": 200,
"model": "llama",
"response": "I’m a large language model. My model type is a variant of the Transformer architecture, which is a popular design for sequence-to-sequence tasks like language translation and text generation."
},
"meta": {
"model": "llama",
"query_length": 21,
"rate_remaining": 29,
"rate_reset": "2026-06-27T09:18:55+00:00"
}
}