Loading API DOCS...

OpenAI GPT API

Ai Assistant From OpenAI ChatGPT Large Language Model API, Unlimited FREE.

Endpoint

GET https://api.lmnx9.shop/ai?model=gpt&q=

Code Examples

cURL
curl -X GET "https://api.lmnx9.shop/ai?model=gpt&q=" -H "Content-Type: application/json"
JavaScript
fetch("https://api.lmnx9.shop/ai?model=gpt&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=gpt&q=")
print(r.json())
PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/ai?model=gpt&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": "gpt",
        "response": "I am based on OpenAI's language model, designed to assist with a wide range of questions and tasks by providing information and generating text. If you have specific questions about my capabilities or features, feel free to ask!"
    },
    "meta": {
        "model": "gpt",
        "query_length": 18,
        "rate_remaining": 28,
        "rate_reset": "2026-06-27T09:13:14+00:00"
    }
}