Microsoft Copilot AI
Ai Assistant From Microsoft Copilot API, Unlimited & Fast Response.
Endpoint
GET
https://api.lmnx9.shop/ai?model=copilot&q=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/ai?model=copilot&q=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/ai?model=copilot&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=copilot&q=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/ai?model=copilot&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": "copilot",
"response": "I’m Microsoft Copilot — an AI created by Microsoft — but I don’t disclose my underlying model architecture or internal system details. Think of me less as a single “model name” and more as a whole platform designed to help you reason, create, and explore ideas.\n\nIf you’re curious about what I *can* do rather than what I’m built from, I’m happy to dive into that."
},
"meta": {
"model": "copilot",
"query_length": 16,
"rate_remaining": 29,
"rate_reset": "2026-06-27T08:46:06+00:00"
}
}