├── Examples ├── Go-Example.go ├── NodeJs-Example.js └── Python-Example.py ├── README.md └── main.py /Examples/Go-Example.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "bytes" 5 | "encoding/json" 6 | "fmt" 7 | "io/ioutil" 8 | "log" 9 | "net/http" 10 | ) 11 | 12 | func solveCaptcha(publickey, website, host, blob string) { 13 | data := map[string]string{ 14 | "host": host, 15 | "publickey": publickey, 16 | "website": website, 17 | "blob": blob, 18 | "solvekey": "TM-upBsYRUYH4SfbpQ13j0AuBpf7giICLVBb5yDDPZYwDSjs", 19 | } 20 | 21 | jsonData, err := json.Marshal(data) 22 | if err != nil { 23 | log.Fatalf("Error marshalling JSON: %v", err) 24 | } 25 | 26 | resp, err := http.Post("http://23.137.104.216:5000/api/funcaptcha", "application/json", bytes.NewBuffer(jsonData)) 27 | if err != nil { 28 | log.Fatalf("Error making POST request: %v", err) 29 | } 30 | defer resp.Body.Close() 31 | 32 | body, err := ioutil.ReadAll(resp.Body) 33 | if err != nil { 34 | log.Fatalf("Error reading response body: %v", err) 35 | } 36 | 37 | var result map[string]interface{} 38 | if err := json.Unmarshal(body, &result); err != nil { 39 | log.Fatalf("Error unmarshalling JSON: %v", err) 40 | } 41 | 42 | fmt.Println(result["token"]) 43 | } 44 | 45 | func main() { 46 | solveCaptcha("73BEC076-3E53-30F5-B1EB-84F494D43DBA", "https://signin.ea.com", "ea-api.arkoselabs.com", "undefined") 47 | } 48 | -------------------------------------------------------------------------------- /Examples/NodeJs-Example.js: -------------------------------------------------------------------------------- 1 | const axios = require('axios'); 2 | 3 | async function solveCaptcha(publickey, website, host, blob) { 4 | const data = { 5 | host: host, 6 | publickey: publickey, 7 | website: website, 8 | blob: blob, 9 | solvekey: "TM-upBsYRUYH4SfbpQ13j0AuBpf7giICLVBb5yDDPZYwDSjs" 10 | }; 11 | 12 | try { 13 | const response = await axios.post('http://23.137.104.216:5000/api/funcaptcha', data); 14 | console.log(response.data.token); 15 | } catch (error) { 16 | console.error('Error solving captcha:', error); 17 | } 18 | } 19 | 20 | solveCaptcha('73BEC076-3E53-30F5-B1EB-84F494D43DBA', 'https://signin.ea.com', 'ea-api.arkoselabs.com', 'undefined'); 21 | -------------------------------------------------------------------------------- /Examples/Python-Example.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | def SolveCaptcha(publickey,website,host,blob): 4 | data = { 5 | "host": host, 6 | "publickey": publickey, 7 | "website": website, 8 | "blob": blob, 9 | "solvekey":"TM-upBsYRUYH4SfbpQ13j0AuBpf7giICLVBb5yDDPZYwDSjs" 10 | } 11 | Solve = requests.post('http://23.137.104.216:5000/api/funcaptcha',json=data) 12 | print(Solve.json()['token']) 13 | 14 | SolveCaptcha('73BEC076-3E53-30F5-B1EB-84F494D43DBA',"https://signin.ea.com",'ea-api.arkoselabs.com',"undefined) 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Support us with a star to keep this free API updated ⭐ 2 | ----------------------------------- 3 | # Features 4 | - Totally Free until we release our website. 5 | - Very Fast API. 6 | - Easy to add it in your tools 7 | 8 | # Preview 9 | ![image](https://github.com/user-attachments/assets/b08ce497-fb0e-4b5c-ad15-55ded8a1441f) 10 | 11 | # Docs 12 | - POST http://23.137.104.216:5000/api/funcaptcha 13 | - JSON { 14 | "host": "", 15 | "publickey": "", 16 | "website": "", 17 | "blob": "", 18 | "solvekey":"TM-upBsYRUYH4SfbpQ13j0AuBpf7giICLVBb5yDDPZYwDSjs" 19 | } 20 | - host - the arkoselabs host 21 | - publickey - arkose labs public key 22 | - website - the current page that you are in 23 | - blob - if the website requires data blob 24 | - solvekey - key that have balance ( please use the one that already in the json ) 25 | # Notes 26 | - this is suppressed solves so it may be bad for some websites , but the paid version will be good . 27 | - keep blob as undefined for no blob - do not keep it null . 28 | 29 | # ❓ Need help 30 | - Reach us on discord :[ discord ](https://contact-mano.vercel.app/) 31 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | print('check examples folder for examples') 2 | print('by the way its totally free') 3 | print('check examples folder for examples') 4 | print('by the way its totally free') 5 | print('check examples folder for examples') 6 | print('by the way its totally free') 7 | print('check examples folder for examples') 8 | print('by the way its totally free') 9 | print('check examples folder for examples') 10 | print('by the way its totally free') 11 | print('check examples folder for examples') 12 | print('by the way its totally free') 13 | print('check examples folder for examples') 14 | print('by the way its totally free') 15 | print('check examples folder for examples') 16 | print('by the way its totally free') 17 | print('check examples folder for examples') 18 | print('by the way its totally free') 19 | print('check examples folder for examples') 20 | print('by the way its totally free') 21 | print('check examples folder for examples') 22 | print('by the way its totally free') 23 | print('check examples folder for examples') 24 | print('by the way its totally free') 25 | print('check examples folder for examples') 26 | print('by the way its totally free') 27 | print('check examples folder for examples') 28 | print('by the way its totally free') 29 | print('check examples folder for examples') 30 | print('by the way its totally free') 31 | print('check examples folder for examples') 32 | print('by the way its totally free') 33 | print('check examples folder for examples') 34 | print('by the way its totally free') 35 | print('check examples folder for examples') 36 | print('by the way its totally free') 37 | print('check examples folder for examples') 38 | print('by the way its totally free') 39 | print('check examples folder for examples') 40 | print('by the way its totally free') 41 | print('check examples folder for examples') 42 | print('by the way its totally free') 43 | print('check examples folder for examples') 44 | print('by the way its totally free') 45 | print('check examples folder for examples') 46 | print('by the way its totally free') 47 | print('check examples folder for examples') 48 | print('by the way its totally free') 49 | print('check examples folder for examples') 50 | print('by the way its totally free') 51 | print('check examples folder for examples') 52 | print('by the way its totally free') 53 | print('check examples folder for examples') 54 | print('by the way its totally free') 55 | print('check examples folder for examples') 56 | print('by the way its totally free') 57 | print('check examples folder for examples') 58 | print('by the way its totally free') 59 | print('check examples folder for examples') 60 | print('by the way its totally free') 61 | print('check examples folder for examples') 62 | print('by the way its totally free') 63 | print('check examples folder for examples') 64 | print('by the way its totally free') 65 | print('check examples folder for examples') 66 | print('by the way its totally free') 67 | print('check examples folder for examples') 68 | print('by the way its totally free') 69 | print('check examples folder for examples') 70 | print('by the way its totally free') 71 | print('check examples folder for examples') 72 | print('by the way its totally free') 73 | print('check examples folder for examples') 74 | print('by the way its totally free') 75 | print('check examples folder for examples') 76 | print('by the way its totally free') 77 | print('check examples folder for examples') 78 | print('by the way its totally free') 79 | print('check examples folder for examples') 80 | print('by the way its totally free') 81 | print('check examples folder for examples') 82 | print('by the way its totally free') 83 | print('check examples folder for examples') 84 | print('by the way its totally free') 85 | print('check examples folder for examples') 86 | print('by the way its totally free') 87 | print('check examples folder for examples') 88 | print('by the way its totally free') 89 | print('check examples folder for examples') 90 | print('by the way its totally free') 91 | print('check examples folder for examples') 92 | print('by the way its totally free') 93 | print('check examples folder for examples') 94 | print('by the way its totally free') 95 | print('check examples folder for examples') 96 | print('by the way its totally free') 97 | print('check examples folder for examples') 98 | print('by the way its totally free') 99 | print('check examples folder for examples') 100 | print('by the way its totally free') 101 | print('check examples folder for examples') 102 | print('by the way its totally free') 103 | print('check examples folder for examples') 104 | print('by the way its totally free') 105 | print('check examples folder for examples') 106 | print('by the way its totally free') 107 | print('check examples folder for examples') 108 | print('by the way its totally free') 109 | print('check examples folder for examples') 110 | print('by the way its totally free') 111 | print('check examples folder for examples') 112 | print('by the way its totally free') 113 | print('check examples folder for examples') 114 | print('by the way its totally free') 115 | print('check examples folder for examples') 116 | print('by the way its totally free') 117 | print('check examples folder for examples') 118 | print('by the way its totally free') 119 | print('check examples folder for examples') 120 | print('by the way its totally free') 121 | print('check examples folder for examples') 122 | print('by the way its totally free') 123 | print('check examples folder for examples') 124 | print('by the way its totally free') 125 | print('check examples folder for examples') 126 | print('by the way its totally free') 127 | print('check examples folder for examples') 128 | print('by the way its totally free') 129 | print('check examples folder for examples') 130 | print('by the way its totally free') 131 | print('check examples folder for examples') 132 | print('by the way its totally free') 133 | print('check examples folder for examples') 134 | print('by the way its totally free') 135 | print('check examples folder for examples') 136 | print('by the way its totally free') 137 | print('check examples folder for examples') 138 | print('by the way its totally free') 139 | print('check examples folder for examples') 140 | print('by the way its totally free') 141 | print('check examples folder for examples') 142 | print('by the way its totally free') 143 | print('check examples folder for examples') 144 | print('by the way its totally free') 145 | print('check examples folder for examples') 146 | print('by the way its totally free') 147 | print('check examples folder for examples') 148 | print('by the way its totally free') 149 | print('check examples folder for examples') 150 | print('by the way its totally free') 151 | print('check examples folder for examples') 152 | print('by the way its totally free') 153 | print('check examples folder for examples') 154 | print('by the way its totally free') 155 | print('check examples folder for examples') 156 | print('by the way its totally free') 157 | print('check examples folder for examples') 158 | print('by the way its totally free') 159 | print('check examples folder for examples') 160 | print('by the way its totally free') 161 | print('check examples folder for examples') 162 | print('by the way its totally free') 163 | print('check examples folder for examples') 164 | print('by the way its totally free') 165 | print('check examples folder for examples') 166 | print('by the way its totally free') 167 | print('check examples folder for examples') 168 | print('by the way its totally free') 169 | print('check examples folder for examples') 170 | print('by the way its totally free') 171 | print('check examples folder for examples') 172 | print('by the way its totally free') 173 | print('check examples folder for examples') 174 | print('by the way its totally free') 175 | print('check examples folder for examples') 176 | print('by the way its totally free') 177 | print('check examples folder for examples') 178 | print('by the way its totally free') 179 | print('check examples folder for examples') 180 | print('by the way its totally free') 181 | print('check examples folder for examples') 182 | print('by the way its totally free') 183 | print('check examples folder for examples') 184 | print('by the way its totally free') 185 | print('check examples folder for examples') 186 | print('by the way its totally free') 187 | print('check examples folder for examples') 188 | print('by the way its totally free') 189 | print('check examples folder for examples') 190 | print('by the way its totally free') 191 | print('check examples folder for examples') 192 | print('by the way its totally free') 193 | print('check examples folder for examples') 194 | print('by the way its totally free') 195 | print('check examples folder for examples') 196 | print('by the way its totally free') 197 | print('check examples folder for examples') 198 | print('by the way its totally free') 199 | print('check examples folder for examples') 200 | print('by the way its totally free') 201 | print('check examples folder for examples') 202 | print('by the way its totally free') 203 | print('check examples folder for examples') 204 | print('by the way its totally free') 205 | print('check examples folder for examples') 206 | print('by the way its totally free') 207 | print('check examples folder for examples') 208 | print('by the way its totally free') 209 | print('check examples folder for examples') 210 | print('by the way its totally free') 211 | print('check examples folder for examples') 212 | print('by the way its totally free') 213 | print('check examples folder for examples') 214 | print('by the way its totally free') 215 | print('check examples folder for examples') 216 | print('by the way its totally free') 217 | --------------------------------------------------------------------------------