cekid.games
Open in
urlscan Pro
76.76.21.142
Public Scan
URL:
https://cekid.games/
Submission: On December 16 via api from BE — Scanned from ES
Submission: On December 16 via api from BE — Scanned from ES
Form analysis
0 forms found in the DOMText Content
In order to view this documentation page, you have to enable JavaScript in your web browser. API CEK ID GAME Environment: Base Environment * GET Index * GET List Games * POST Post Requests * GET Get Requests API CEK ID GAME A Python library designed Web API to make it easier for game developers, data analysts, and other users to check and validate usernames (nicknames) in a game based on account IDs. The library provides a simple and easy-to-use interface for accessing username data from a game database. cURL GET INDEX https://api-cek-id-game-ten.vercel.app/api/ Get Index of API Cek ID Games Headers User-Agent insomnia/9.3.1 -------------------------------------------------------------------------------- Example request: Copy to clipboard curl "https://api-cek-id-game-ten.vercel.app/api/" \ -H 'User-Agent: insomnia/9.3.1' \ -X GET Example response - 200: { "message": "Welcome to the cek-id-game API", "server_time": "2024-07-30 18:02:41", "status": true } GET LIST GAMES https://api-cek-id-game-ten.vercel.app/api/list-games Get List of Games Headers User-Agent insomnia/9.3.1 -------------------------------------------------------------------------------- Example request: Copy to clipboard curl "https://api-cek-id-game-ten.vercel.app/api/list-games" \ -H 'User-Agent: insomnia/9.3.1' \ -X GET Example response - 200: { "data": [ "eight_ball_pool", "aether_gazer", "arena_of_valor", "auto_chess", "azur_lane", "bad_landers", "barbarq", "basketrio", "call_of_duty", "dragon_city", "free_fire", "hago", "mobile_legends", "point_blank", "valorant" ], "server_time": "2024-07-30 18:01:53", "status": true } POST POST REQUESTS https://api-cek-id-game-ten.vercel.app/api/check-id-game Check ID Games Via POST Requests Headers Content-Type application/json User-Agent insomnia/9.3.1 Body json { "type_name": "hago", "userId": "1084710366", "zoneId": "" } -------------------------------------------------------------------------------- Example request: Copy to clipboard curl "https://api-cek-id-game-ten.vercel.app/api/check-id-game" \ -H 'Content-Type: application/json' \ -H 'User-Agent: insomnia/9.3.1' \ -X POST \ -d '{ "type_name": "hago", "userId": "1084710366", "zoneId": "" }' Example response - 200: { "message": "Success Requesting to API", "nickname": "Martinus Krisandro Perdana Putra", "server_time": "2024-07-30 18:08:05", "status": true, "type_name": "HAGO" } Example response - 200: { "status": false, "server_time": "2024-07-30 16:32:24", "message": "userIDNotEligibleError", "type_name": "HAGO" } Example response - 200: { "status": false, "server_time": "2024-07-30 16:32:37", "message": "Invalid Request Parameter(s) [userAccount.userId must not be blank]", "type_name": "HAGO" } GET GET REQUESTS https://api-cek-id-game-ten.vercel.app/api/check-id-game?type_name=mobile_legends&userId=604210151&zoneId=8425 Check ID Games Via GET Requests Headers User-Agent insomnia/9.3.1 -------------------------------------------------------------------------------- Example request: Copy to clipboard curl "https://api-cek-id-game-ten.vercel.app/api/check-id-game?type_name=mobile_legends&userId=604210151&zoneId=8425" \ -H 'User-Agent: insomnia/9.3.1' \ -X GET Example response - 200: { "message": "Success Requesting to API", "nickname": "Diezyyy", "server_time": "2024-07-30 18:02:20", "status": true, "type_name": "MOBILE_LEGENDS" } Example response - 200: { "message": "1003: Error_Role_Null", "server_time": "2024-07-30 18:32:26", "status": false, "type_name": "MOBILE_LEGENDS" } Example response - 200: { "status": false, "server_time": "2024-07-30 16:32:37", "message": "Invalid Request Parameter(s) [userAccount.userId must not be blank]", "type_name": "HAGO" }