### Example FunCaptcha Solver API Request Source: https://github.com/boarincorporated/funcapsolver/blob/main/README.md A Python example demonstrating how to send a POST request to the FunCaptcha Solver API to obtain a token. ```python import requests import json session = requests.Session() url = "http://127.0.0.1:5000/solve" payload = { "private_key": "YOUR_SITE_KEY", "og_proxy": "http://username:password@ip:port", "blob": "optional-blob-data", "og_cookies": session.cookies.get_dict() } response = requests.post(url, json=payload) result = response.json() ``` -------------------------------- ### Example FunCaptcha Solver API Response Source: https://github.com/boarincorporated/funcapsolver/blob/main/README.md An example of a successful JSON response from the FunCaptcha Solver API, containing the solved status, token, and variant. ```json { "solved": true, "token": "...", "variant": "pathfinder", "suppressed": false } ``` -------------------------------- ### FunCaptcha Solver API Endpoint Source: https://github.com/boarincorporated/funcapsolver/blob/main/README.md Details the POST endpoint for solving FunCaptcha, including request body parameters, response structure, and example usage. ```APIDOC Endpoint: http://127.0.0.1:5000/solve Method: POST Content-Type: application/json Request Body: private_key: str (Required) - The FunCaptcha site key og_proxy: str (Required) - Proxy URL with http:// prefix blob: str (Optional) - Additional blob data, required if sitekey requires it og_cookies: Dict[str, str] (Optional) - Dictionary of cookies, required for Roblox niggamode: bool (Optional) - If set to true, allows for proxyless task Response: solved: boolean - Whether the captcha was successfully solved token: string - The generated token if solved variant: string - The variant of the captcha suppressed: boolean - Whether the response was suppressed Error Codes: 200: Successful request 400: Invalid request parameters 500: Internal server error ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.