GET | POSThttps://api.mrccaptcha.com/captcha/FunCaptchaTokenTask?apikey=YOUR_API_KEY&sitekey=SITE_KEY
Body or Query param
Name
Type
Description
apikey
string*
sitekey
string*
The Funcaptcha public key of website
proxy
string*
Format host:port:login:password or host:port or protocol://host:port or protocol://login:password@host:port or login:password:host:port or login:password@host:port or ... . Some websites will verify that the submit IP and the resolution IP match, so in some cases, you need to pass an additional proxy.
Note: For rotating proxies, you must use ones that support session or sticky session.
Using proxies also consumes a lot of data for downloading captcha images, so you should consider the costs.
We recommend using proxies in the EU/US regions to ensure connection speed.
datablob
string*
Blob of Funcaptcha challenge generated by your userAgent.
userAgent
string*
UserAgent of your browser (or app). See type of supported browsers in below to set your userAgent
using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
class Program
{
static async Task Main(string[] args)
{
var client = new HttpClient();
var data = new
{
apikey = "PKG.bjhfweb7rf236rfg7237rg4273uh3br273rg47",
sitekey = "00000000-0000-0000-0000-000000000000",
proxy = "27.26.25.24:1234:user:pass"
};
var json = JsonConvert.SerializeObject(data);
var content = new StringContent(json, Encoding.UTF8, "application/json");
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri("https://api.mrccaptcha.com/captcha/FunCaptchaTokenTask"),
Content = content
};
try
{
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
var responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
catch (HttpRequestException e)
{
Console.WriteLine($"Request error: {e.Message}");
}
}
}