Lynx Api-s
Documentation

Dokumentasi Lynx Rest API

Cari module, pilih endpoint, lihat contoh request, lalu gunakan Playground untuk mengetes respons JSON secara langsung.

Quick Start

Endpoint Pattern

GET /api/game/cek-kodam?text=MrchlldevResponse: JSONNo apikey required

Total Category

Module yang tersedia

11

Total Endpoint

Endpoint aktif otomatis

58

Example Request

javascript

const res = await fetch('https://lynxdecode.my.id/api/game/cek-kodam?text=Lynxdecode')const data = await res.json()console.log(data)

Example Result

JSON Response

{  "status": true,  "code": 200,  "creator": "Lynx Api-s",  "result": {    "name": "Lynxdecode",    "kodam": "Macan Putih",    "aura": "77%"  }}