Endpoints
GET /getPricing
Get current pay-as-you-go pricing for all captcha types.
GET /getPricing
Returns the current price per solve for each captcha type. No authentication required.
Request
No body needed — this is a GET request.
curl https://v2.captchasolv.com/getPricingResponse
{
"errorId": 0,
"pricing": {
"v2": 0.002,
"v2_invisible": 0.002,
"v2e": 0.002,
"v2e_invisible": 0.002,
"v3": 0.001,
"v3e": 0.001,
"akamai": 0.0005,
"kasada": 0.0005,
"kasada_custom": 0.0005
},
"currency": "USD",
"note": "Prices per solve. Pay-as-you-go billing."
}| Field | Type | Description |
|---|---|---|
errorId | integer | 0 = success. |
pricing | object | Map of internal captcha type to price per solve (USD). |
currency | string | Always "USD". |
note | string | Billing note. |
Captcha type to internal type mapping
Your request type | Internal key | Price (USD) |
|---|---|---|
RecaptchaV2 | v2 | $0.002 |
RecaptchaV2Invisible | v2_invisible | $0.002 |
RecaptchaV2Enterprise | v2e | $0.002 |
RecaptchaV2EnterpriseInvisible | v2e_invisible | $0.002 |
RecaptchaV3 | v3 | $0.001 |
RecaptchaV3Enterprise | v3e | $0.001 |
Akamai | akamai | $0.0005 |
Kasada | kasada | $0.0005 |
KasadaCustom | kasada_custom | $0.0005 |