FREE API
Grok AI
Ai Assistant From Grok API, Premium Model & Unlimited Access FREE.
GET
https://api.lmnx9.shop/ai/?model=grok&q=
Code Examples
curl -X GET "https://api.lmnx9.shop/ai/?model=grok&q=" -H "Content-Type: application/json"
fetch("https://api.lmnx9.shop/ai/?model=grok&q=")
.then(function(r) { return r.json(); })
.then(function(data) { console.log(data); });import requests
r = requests.get("https://api.lmnx9.shop/ai/?model=grok&q=")
print(r.json())<?php
$data = file_get_contents("https://api.lmnx9.shop/ai/?model=grok&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": "grok",
"response": "Sure thing! I’m **Grok**, the large‑language‑model AI built by **Groq**. That’s the model I’m running under. If you have any other questions about how I work or what I can help with, just let me know!"
},
"meta": {
"model": "grok",
"query_length": 45,
"rate_remaining": 29,
"rate_reset": "2026-06-27T08:51:28+00:00"
}
}