Grok AI
Ai Assistant From Grok API, Premium Model & Unlimited Access FREE.
Endpoint
GET
https://api.lmnx9.shop/ai/?model=grok&q=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/ai/?model=grok&q=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/ai/?model=grok&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=grok&q=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/ai/?model=grok&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": "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"
}
}