## CURL ``` bash curl --header "accept:application/json" https://api.mininxd.my.id/ ``` ## JavaScript ``` javascript fetch("https://api.mininxd.my.id/", { headers: { 'accept':'application/json' }) ``` ## Axios ``` javascript axios.get("https://api.mininxd.my.id/", { headers: { 'accept':'application/json' }) ``` ## Python > install requests module first
> _$ python -m pip install requests_ ``` python import requests url = "https://api.mininxd.my.id/" headers = { "accept": "application/json" } response = requests.get(url, headers=headers) result = response.json() print(result) ```

> if you found this gist from nowhere, try visit my homepage https://mininxd.my.id/ :'D