FREE API
Llama Chatbot API
AI Assistant From Llama Large Language Model API, Unlimited FREE & Fast.
GET
https://api.lmnx9.shop/ai?model=llama&q=
Code Examples
curl -X GET "https://api.lmnx9.shop/ai?model=llama&q=" -H "Content-Type: application/json"
fetch("https://api.lmnx9.shop/ai?model=llama&q=")
.then(function(r) { return r.json(); })
.then(function(data) { console.log(data); });import requests
r = requests.get("https://api.lmnx9.shop/ai?model=llama&q=")
print(r.json())<?php
$data = file_get_contents("https://api.lmnx9.shop/ai?model=llama&q=");
print_r(json_decode($data, 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"
}
}