NEW!! perubahan domain toram-id.info menjadi toram-id.com. akses login ditutup dan akan dibuka kembali pada mei 2024.

API merupakan kepanjangan dari Application Programming Interface (Antarmuka Pemrograman Aplikasi). Kata Antarmuka dapat diartikan sebagai komunikasi layanan antara dua aplikasi. Dimana biasanya terdapat dua arah komunikasi antar server dengan client atau bahasa lainnya adalah response dan request.

Bearer authentication (autentikasi dengan token) merupakan skema autentikasi HTTP dengan menggunakan keamanan token yang disebut bearer token. Bearer token berbentuk string yang terenkripsi dari sisi server yang mana akan digunakan sebagai metode autentikasi. kemudian client menyimpan token tersebut. Client wajib menyertakan bearer token untuk mengakses API sebagaimana diperlukan untuk mengidentifikasi client.

Untuk itu kamu dapat mendapatkan token melalui menu edit user, kemudian klik generate token.
generate token

Jika akses token berhasil dibuat, maka kamu dapat mengakses API dengan menggunakan method GET.
generate token

Berikut ini adalah contoh menggunakan bearer token dengan javascript dan axios.

                    import axios from 'axios';

const token = 'AoBbuu26CJyHbOPmxZd2PSUP2MyxjPtYPGl8PsFq';

// contoh menggunakan axios https://axios-http.com/
// atau kamu dapat menggunakan fetch https://developer.mozilla.org/en-US/docs/Web/API/fetch

axios.defaults.headers =  {
    headers: {
        'Content-Type': 'application/json',
        Accept: 'application/json',
        Authorization: 'Bearer ' + token
    }
}

axios.get('https://toram-id.com/api/v1/items')
.then((response) => console.log(response.data))
.catch((err) => console.error(err));



Berikut ini adalah list route API yang dapat kamu gunakan

  • Menampilkan items yang terakhir ditambahkan
    GET https://toram-id.com/api/v1/items
    Contoh response
    [
            {
                "id": 3762,
                "drop_type_id": 32,
                "name": "Cincin Mulia (pedang sihir)",
                "name_en": "Cincin Mulia (pedang sihir)",
                "proses": null,
                "sell": null,
                "note": {
                    "monster": "Base DEF : 0\r\n\r\nMaxMP +500 ATK +3%\r\nMATK +3%\r\nDengan Pesawat Sihir\r\nKecepatan Serangan +25%\r\nKecepatan Merapal +25%",
                    "npc": null
                },
                "picture": null,
                "fullimage": null,
                "released": null,
                "drop_type": {
                    "id": 32,
                    "name": "Perkakas Special",
                    "url": "https:\/\/toram-id.com\/img\/drop\/tambahan.jpg"
                },
                "monsters": []
            },
            ...
        ]
  • Menampilkan jenis items atau kategori items. contoh: pedang, staff, zirah, etc
    GET https://toram-id.com/api/v1/items/type
    Contoh response
    [
            {
                "id": 1,
                "name": "logam",
                "url": "https:\/\/toram-id.com\/img\/drop\/logam.png"
            },
            {
                "id": 2,
                "name": "kain",
                "url": "https:\/\/toram-id.com\/img\/drop\/kain.png"
            },
            {
                "id": 3,
                "name": "fauna",
                "url": "https:\/\/toram-id.com\/img\/drop\/fauna.png"
            },
            ...
        ]
  • Menampilkan items berdasarkan jenisnya.
    GET https://toram-id.com/api/v1/items/{items_type}
    GET https://toram-id.com/api/v1/items/31
    Contoh response
    {
            "current_page": 1,
            "data": [
                {
                    "id": 3648,
                    "drop_type_id": 31,
                    "name": "Ocean Dancer",
                    "name_en": "Ocean Dancer",
                    "proses": null,
                    "sell": null,
                    "note": {
                        "monster": null,
                        "npc": "Base DEF: 94\n\nUntradable\nAttack MP Recovery +10\nAttack Speed +1000\nEvasion Recharge +30%\nDodge +20%\nAbsolute Dodge +10%\nWind Resistance -70%"
                    },
                    "picture": null,
                    "fullimage": null,
                    "released": null,
                    "drop_type": {
                        "id": 31,
                        "name": "zirah",
                        "url": "https:\/\/toram-id.com\/img\/drop\/zirah.jpg"
                    },
                    "monsters": []
                },
                ...
        ]
  • Menampilkan item yang dipilih.
    GET https://toram-id.com/api/v1/item/{item_id}
    GET https://toram-id.com/api/v1/item/2000
    Contoh response
    {
            "id": 2000,
            "drop_type_id": 4,
            "name": "Shide Merah Putih",
            "name_en": "Red and White Shide",
            "proses": null,
            "sell": null,
            "note": null,
            "picture": null,
            "fullimage": null,
            "released": null,
            "drop_type": {
                "id": 4,
                "name": "kayu",
                "url": "https:\/\/toram-id.com\/img\/drop\/kayu.png"
            },
            "monsters": [],
        }
  • Mencari items dengan kata kucni.
    GET https://toram-id.com/api/v1/items/search/{query}
    GET https://toram-id.com/api/v1/items/search/bunga
    Contoh response
    {
            "current_page": 1,
            "data": [
                {
                    "id": 582,
                    "drop_type_id": 33,
                    "name": "Bunga Akaku",
                    "name_en": "Akaku Flower",
                    "proses": null,
                    "sell": null,
                    "note": {
                        "monster": "Base DEF: 1\r\n\r\nKebal Api +2%\r\nKebal Angin +2%\r\nKebal Air +2%\r\nKebal Bumi +2%",
                        "npc": "Base DEF: 40\n\nKebal Api -10%\nDark Resistance +15%\nAggro +9%\nShort Range Damage +3%"
                    },
                    "picture": "https:\/\/toram-id.com\/imgs\/mobs\/bunga-akakuefkfw.png",
                    "fullimage": null,
                    "released": null,
                    "drop_type": {
                        "id": 33,
                        "name": "Perkakas Tambahan",
                        "url": "https:\/\/toram-id.com\/img\/drop\/pelengkap.jpg"
                    },
                    "monsters": []
                },
                {
                    "id": 1019,
                    "drop_type_id": 16,
                    "name": "Nektar (Buket Bunga)",
                    "name_en": "Flower Nectar (Bouquet)",
                    "proses": null,
                    "sell": null,
                    "note": null,
                    "picture": null,
                    "fullimage": null,
                    "released": null,
                    "drop_type": {
                        "id": 16,
                        "name": "box b",
                        "url": "https:\/\/toram-id.com\/img\/drop\/box_b.jpg"
                    },
                    "monsters": [
                        {
                            "id": 50,
                            "map_id": 50,
                            "element_id": 2,
                            "name": "Fimera",
                            "name_en": "Fimera",
                            "level": 60,
                            "type": 1,
                            "hp": null,
                            "xp": 38,
                            "pet": "n",
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/fimera-42180.png",
                            "pivot": {
                                "drop_id": 1019,
                                "monster_id": 50
                            },
                            "element": {
                                "id": 2,
                                "name": "angin"
                            }
                        },
                        {
                            "id": 277,
                            "map_id": 140,
                            "element_id": 7,
                            "name": "Nepenthe",
                            "name_en": "Nepenthe",
                            "level": 114,
                            "type": 1,
                            "hp": null,
                            "xp": null,
                            "pet": "y",
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/nepenthe-62029.png",
                            "pivot": {
                                "drop_id": 1019,
                                "monster_id": 277
                            },
                            "element": {
                                "id": 7,
                                "name": "netral"
                            }
                        },
                        {
                            "id": 278,
                            "map_id": 139,
                            "element_id": 7,
                            "name": "Nepenthe",
                            "name_en": "Nepenthe",
                            "level": 114,
                            "type": 1,
                            "hp": null,
                            "xp": null,
                            "pet": "y",
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/nepenthe-54493.png",
                            "pivot": {
                                "drop_id": 1019,
                                "monster_id": 278
                            },
                            "element": {
                                "id": 7,
                                "name": "netral"
                            }
                        },
                        {
                            "id": 279,
                            "map_id": 141,
                            "element_id": 7,
                            "name": "Nepenthe",
                            "name_en": "Nepenthe",
                            "level": 113,
                            "type": 1,
                            "hp": null,
                            "xp": null,
                            "pet": "y",
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/nepenthe-88760.png",
                            "pivot": {
                                "drop_id": 1019,
                                "monster_id": 279
                            },
                            "element": {
                                "id": 7,
                                "name": "netral"
                            }
                        },
                        {
                            "id": 337,
                            "map_id": 196,
                            "element_id": 2,
                            "name": "Floral Bee",
                            "name_en": "Floral Bee",
                            "level": 91,
                            "type": 1,
                            "hp": null,
                            "xp": null,
                            "pet": "y",
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/floral-bee-51123.png",
                            "pivot": {
                                "drop_id": 1019,
                                "monster_id": 337
                            },
                            "element": {
                                "id": 2,
                                "name": "angin"
                            }
                        },
                        {
                            "id": 1128,
                            "map_id": 306,
                            "element_id": 3,
                            "name": "Lobalawar",
                            "name_en": "Lobalawar",
                            "level": 200,
                            "type": 2,
                            "hp": null,
                            "xp": 44880,
                            "pet": "n",
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/lobalawar-91091.png",
                            "pivot": {
                                "drop_id": 1019,
                                "monster_id": 1128
                            },
                            "element": {
                                "id": 3,
                                "name": "bumi"
                            }
                        }
                    ]
                },
                {
                    "id": 1026,
                    "drop_type_id": 5,
                    "name": "Mahkota Bunga Putih",
                    "name_en": "White Petal",
                    "proses": null,
                    "sell": null,
                    "note": null,
                    "picture": null,
                    "fullimage": null,
                    "released": null,
                    "drop_type": {
                        "id": 5,
                        "name": "obat",
                        "url": "https:\/\/toram-id.com\/img\/drop\/obat.png"
                    },
                    "monsters": [
                        {
                            "id": 70,
                            "map_id": 221,
                            "element_id": 3,
                            "name": "Mewte",
                            "name_en": "Mewte",
                            "level": 63,
                            "type": 1,
                            "hp": null,
                            "xp": 184,
                            "pet": "y",
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/mewte-99639.png",
                            "pivot": {
                                "drop_id": 1026,
                                "monster_id": 70
                            },
                            "element": {
                                "id": 3,
                                "name": "bumi"
                            }
                        },
                        {
                            "id": 71,
                            "map_id": 221,
                            "element_id": 3,
                            "name": "Mewte",
                            "name_en": "Mewte",
                            "level": 67,
                            "type": 1,
                            "hp": null,
                            "xp": 202,
                            "pet": "y",
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/mewte-77455.png",
                            "pivot": {
                                "drop_id": 1026,
                                "monster_id": 71
                            },
                            "element": {
                                "id": 3,
                                "name": "bumi"
                            }
                        }
                    ]
                },
            ],
            "first_page_url": "https:\/\/toram-id.com\/api\/v1\/items\/search\/bunga?page=1",
            "from": 1,
            "last_page": 2,
            "last_page_url": "https:\/\/toram-id.com\/api\/v1\/items\/search\/bunga?page=2",
            "links": [
                {
                    "url": null,
                    "label": "« Previous",
                    "active": false
                },
                {
                    "url": "https:\/\/toram-id.com\/api\/v1\/items\/search\/bunga?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": "https:\/\/toram-id.com\/api\/v1\/items\/search\/bunga?page=2",
                    "label": "2",
                    "active": false
                },
                {
                    "url": "https:\/\/toram-id.com\/api\/v1\/items\/search\/bunga?page=2",
                    "label": "Next »",
                    "active": false
                }
            ],
            "next_page_url": "https:\/\/toram-id.com\/api\/v1\/items\/search\/bunga?page=2",
            "path": "https:\/\/toram-id.com\/api\/v1\/items\/search\/bunga",
            "per_page": 15,
            "prev_page_url": null,
            "to": 15,
            "total": 17
        }
  • Menampilkan monster yang terakhir ditambahkan.
    GET https://toram-id.com/api/v1/monsters
    tampilkan berdasarkan level
    GET https://toram-id.com/api/v1/monsters?level=120
    tampilkan berdasarkan level dan rentang level
    GET https://toram-id.com/api/v1/monsters?level=120&between=8
    Contoh response
    [
            {
                "id": 1430,
                "map_id": 52,
                "element_id": 7,
                "name": "Velum",
                "name_en": "Velum",
                "level": 223,
                "type": 3,
                "hp": "4,260,000",
                "xp": 20600,
                "pet": "y",
                "picture": "https:\/\/toram-id.com\/imgs\/mobs\/velum13Grypng",
                "element": {
                    "id": 7,
                    "name": "netral"
                }
            },
            {
                "id": 1429,
                "map_id": 386,
                "element_id": 1,
                "name": "Kadal Obsidian",
                "name_en": "Obsidian Lizard",
                "level": 180,
                "type": 1,
                "hp": "15,000",
                "xp": 252,
                "pet": "y",
                "picture": null,
                "element": {
                    "id": 1,
                    "name": "air"
                }
            },
            ...
        ]
  • Menampilkan monster berdasarkan jenisnya.

    jenis_id:

    • 1 = Normal Monster
    • 2 = Mini Boss Monster
    • 3 = Boss Monster


    GET https://toram-id.com/api/v1/monsters/{jenis_id}
    GET https://toram-id.com/api/v1/monsters/3 tampilkan berdasarkan level
    GET https://toram-id.com/api/v1/monsters/3?level=120
    tampilkan berdasarkan level dan rentang level
    GET https://toram-id.com/api/v1/monsters/3?level=120&between=8
    Contoh response
    {
            "current_page": 1,
            "data": [
                {
                    "id": 16,
                    "map_id": 116,
                    "element_id": 7,
                    "name": "Mozto Machina (Easy)",
                    "name_en": "Mozto Machina (Easy)",
                    "level": 114,
                    "type": 3,
                    "hp": "111,000",
                    "xp": 1224,
                    "pet": "n",
                    "picture": null,
                    "element": {
                        "id": 7,
                        "name": "netral"
                    },
                    "drops": [
                        {
                            "id": 976,
                            "drop_type_id": 3,
                            "name": "Sisik Chimera",
                            "name_en": "Chimera Scale",
                            "proses": null,
                            "sell": null,
                            "note": null,
                            "picture": null,
                            "fullimage": null,
                            "released": null,
                            "pivot": {
                                "monster_id": 16,
                                "drop_id": 976
                            },
                            "drop_type": {
                                "id": 3,
                                "name": "fauna",
                                "url": "https:\/\/toram-id.com\/img\/drop\/fauna.png"
                            }
                        },
                        {
                            "id": 977,
                            "drop_type_id": 3,
                            "name": "Cakar Chimera",
                            "name_en": "Chimera Claw",
                            "proses": null,
                            "sell": null,
                            "note": null,
                            "picture": null,
                            "fullimage": null,
                            "released": null,
                            "pivot": {
                                "monster_id": 16,
                                "drop_id": 977
                            },
                            "drop_type": {
                                "id": 3,
                                "name": "fauna",
                                "url": "https:\/\/toram-id.com\/img\/drop\/fauna.png"
                            }
                        },
                        ...
                    ]
                },
            ]
        }
  • Menampilkan monster yang dipilih.
    GET https://toram-id.com/api/v1/monster/{monster_id}
    Contoh response
    {
            "id": 500,
            "map_id": 37,
            "element_id": 7,
            "name": "Memecoleous (Nightmare)",
            "name_en": "Memecoleous (Nightmare)",
            "level": 120,
            "type": 3,
            "hp": "6,450,000",
            "xp": null,
            "pet": "n",
            "picture": null,
            "element": {
                "id": 7,
                "name": "netral"
            },
            "drops": [
                {
                    "id": 450,
                    "drop_type_id": 46,
                    "name": "Evil Beast Arrow",
                    "name_en": "Evil Beast Arrow",
                    "proses": null,
                    "sell": null,
                    "note": {
                        "monster": "Base ATK: 100 (20%)\r\n\r\nJika busur digunakan\r\nAttack MP Recovery +3\r\nDaya Jarak Dekat -10%\r\n\r\n**",
                        "npc": "**\r\nBase ATK: 100 (20%)\r\n        Critical Rate +3\r\nCritical Damage +1"
                    },
                    "picture": null,
                    "fullimage": null,
                    "released": null,
                    "pivot": {
                        "monster_id": 500,
                        "drop_id": 450
                    },
                    "drop_type": {
                        "id": 46,
                        "name": "panah",
                        "url": "https:\/\/toram-id.com\/img\/drop\/panah.jpg"
                    }
                },
                {
                    "id": 647,
                    "drop_type_id": 33,
                    "name": "Topi Gotik",
                    "name_en": "Gothic Hat",
                    "proses": null,
                    "sell": null,
                    "note": {
                        "monster": "Base DEF: 35\r\n\r\nCritical Rate +14\r\nDaya Jarak Dekat +1%\r\nDaya Jarak Jauh -1%",
                        "npc": null
                    },
                    "picture": "https:\/\/toram-id.com\/imgs\/mobs\/topi-gotik-54721.png",
                    "fullimage": null,
                    "released": null,
                    "pivot": {
                        "monster_id": 500,
                        "drop_id": 647
                    },
                    "drop_type": {
                        "id": 33,
                        "name": "Perkakas Tambahan",
                        "url": "https:\/\/toram-id.com\/img\/drop\/pelengkap.jpg"
                    }
                },
                ...
            ],
            "map": {
                "id": 37,
                "name": "Istana Gelap: Area 2",
                "name_en": "Dark Castle: Area 2"
            }
        }
  • Mencari monsters dengan kata kunci.
    GET https://toram-id.com/api/v1/monsters/search/{query}
    GET https://toram-id.com/api/v1/monsters/search/machina
    Contoh response
    {
            "current_page": 1,
            "data": [
                {
                    "id": 6,
                    "map_id": 113,
                    "element_id": 2,
                    "name": "Ledon Machina",
                    "name_en": "Ledon Machina",
                    "level": 108,
                    "type": 1,
                    "hp": "10,000",
                    "xp": 269,
                    "pet": "n",
                    "picture": null,
                    "element": {
                        "id": 2,
                        "name": "angin"
                    },
                    "drops": [
                        {
                            "id": 378,
                            "drop_type_id": 29,
                            "name": "Tombak Paladin",
                            "name_en": "Paladin Spear",
                            "proses": null,
                            "sell": null,
                            "note": {
                                "monster": null,
                                "npc": "\r\n        Magical Resistance -6%, Critical Damage 4, Additional Melee 25%\r\n        Potensi 24\r\n       proses: Logam x30"
                            },
                            "picture": "https:\/\/toram-id.com\/imgs\/mobs\/tombak-paladin-54912.png",
                            "fullimage": null,
                            "released": null,
                            "pivot": {
                                "monster_id": 6,
                                "drop_id": 378
                            },
                            "drop_type": {
                                "id": 29,
                                "name": "tombak",
                                "url": "https:\/\/toram-id.com\/img\/drop\/tombak.jpg"
                            }
                        },
                        {
                            "id": 964,
                            "drop_type_id": 2,
                            "name": "Kulit Aneh",
                            "name_en": "Strange Skin",
                            "proses": null,
                            "sell": null,
                            "note": null,
                            "picture": null,
                            "fullimage": null,
                            "released": null,
                            "pivot": {
                                "monster_id": 6,
                                "drop_id": 964
                            },
                            "drop_type": {
                                "id": 2,
                                "name": "kain",
                                "url": "https:\/\/toram-id.com\/img\/drop\/kain.png"
                            }
                        },
                        ...
                    ],
                    "map": {
                        "id": 113,
                        "name": "Pabrik Demi Machina Besar: Area 1",
                        "name_en": "Large Demi Machina Factory: Area 1"
                    }
                },
                ...
            ],
            "first_page_url": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina?page=1",
            "from": 1,
            "last_page": 4,
            "last_page_url": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina?page=4",
            "links": [
                {
                    "url": null,
                    "label": "« Previous",
                    "active": false
                },
                {
                    "url": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina?page=1",
                    "label": "1",
                    "active": true
                },
                {
                    "url": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina?page=2",
                    "label": "2",
                    "active": false
                },
                {
                    "url": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina?page=3",
                    "label": "3",
                    "active": false
                },
                {
                    "url": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina?page=4",
                    "label": "4",
                    "active": false
                },
                {
                    "url": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina?page=2",
                    "label": "Next »",
                    "active": false
                }
            ],
            "next_page_url": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina?page=2",
            "path": "https:\/\/toram-id.com\/api\/v1\/monsters\/search\/machina",
            "per_page": 15,
            "prev_page_url": null,
            "to": 15,
            "total": 57
        }


Setiap data response akan dicache selama 10 menit, maka lakukan cache pada client untuk jangka tertentu untuk menghindari banyaknya request terhadap server, juga limitasi request adalah 50 request per menit.

Merasa terbantu dengan website ini?

join our discord