Hızlı, güvenilir ve kolay kullanımlı captcha çözüm API'si
API'mizi kullanmaya başlamak için:
https://qriyum.xyz/api/
Tüm API isteklerinde api_key parametresi gönderilmelidir.
{
"api_key": "your_api_key_here"
}
/api/submit.php
| Parametre | Tip | Zorunlu | Açıklama |
|---|---|---|---|
api_key |
string | Evet | API anahtarınız |
image |
string | Evet | Base64 encoded captcha görseli |
<?php
$api_key = "your_api_key_here";
$image_path = "captcha.jpg";
$image_data = base64_encode(file_get_contents($image_path));
$data = [
'api_key' => $api_key,
'image' => $image_data
];
$ch = curl_init('https://qriyum.xyz/api/submit.php');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$result = json_decode($response, true);
print_r($result);
?>
import requests
import base64
api_key = "your_api_key_here"
with open("captcha.jpg", "rb") as f:
image_data = base64.b64encode(f.read()).decode()
data = {
"api_key": api_key,
"image": image_data
}
response = requests.post(
"https://qriyum.xyz/api/submit.php",
json=data
)
print(response.json())
{
"success": true,
"message": "Captcha başarıyla gönderildi",
"data": {
"captcha_id": "a1b2c3d4e5f6g7h8",
"balance": 9.9950
}
}
{
"success": false,
"message": "Yetersiz bakiye",
"data": null
}
/api/result.php?api_key=xxx&captcha_id=xxx
| Parametre | Tip | Zorunlu | Açıklama |
|---|---|---|---|
api_key |
string | Evet | API anahtarınız |
captcha_id |
string | Evet | Captcha ID (submit'ten dönen) |
<?php
$api_key = "your_api_key_here";
$captcha_id = "a1b2c3d4e5f6g7h8";
$url = "https://qriyum.xyz/api/result.php?api_key=$api_key&captcha_id=$captcha_id";
$response = file_get_contents($url);
$result = json_decode($response, true);
if ($result['success'] && $result['data']['status'] == 'solved') {
echo "Captcha Çözümü: " . $result['data']['solution'];
}
?>
{
"success": true,
"message": "Captcha çözüldü",
"data": {
"captcha_id": "a1b2c3d4e5f6g7h8",
"status": "solved",
"solution": "ABC123"
}
}
{
"success": true,
"message": "Captcha henüz çözülmedi",
"data": {
"captcha_id": "a1b2c3d4e5f6g7h8",
"status": "pending",
"solution": null
}
}
/api/balance.php?api_key=xxx
{
"success": true,
"message": "Bakiye bilgisi",
"data": {
"balance": 9.9950,
"currency": "USD"
}
}
| Mesaj | Açıklama |
|---|---|
| Geçersiz API anahtarı | API anahtarınız hatalı veya bulunamadı |
| Yetersiz bakiye | Bakiyeniz captcha çözdürmek için yetersiz |
| Görsel gönderilmedi | Image parametresi eksik veya boş |
| Captcha bulunamadı | Belirtilen captcha_id sistemde yok |
| Hesap askıya alındı | Hesabınız yönetici tarafından askıya alındı |
Sorularınız için bizimle iletişime geçin:
E-posta: admin@qriyum.xyz