{
  "info": {
    "name": "Twocaptcha — mcp.ai",
    "description": "REST API for the Twocaptcha MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/twocaptcha",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "twocaptcha_create_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task"
          ]
        },
        "description": "Creates a new CAPTCHA-solving task and returns a taskId for retrieving results. Supports multiple captcha types: reCAPTCHA v2/v3, hCaptcha, image recognition, and more. After creating a task, use the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task\": {},\n  \"softId\": 0,\n  \"clientKey\": \"\",\n  \"callbackUrl\": \"\",\n  \"languagePool\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "twocaptcha_get_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "balance"
          ]
        },
        "description": "Tool to retrieve your 2Captcha account balance in USD. Use when you need to check available funds before creating captcha-solving tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "twocaptcha_report_incorrect",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/incorrect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "incorrect"
          ]
        },
        "description": "Report that a CAPTCHA solution was declined by the target website. Use this action to provide feedback when a solved CAPTCHA is rejected, enabling 2Captcha to improve accuracy and potentially issue re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"taskId\": 0,\n  \"clientKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "twocaptcha_report_incorrect_image_captcha",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/incorrect/image/captcha",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "incorrect",
            "image",
            "captcha"
          ]
        },
        "description": "Report that an image captcha solution was incorrect. Alias for reportIncorrect method. Use this when you receive an incorrect captcha solution from 2Captcha to report the issue. Made for compatibility",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"taskId\": 0,\n  \"clientKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "twocaptcha_test_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/test/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "test",
            "request"
          ]
        },
        "description": "Debug method to verify how the API parses request parameters. Use when troubleshooting integration issues or validating parameter formats.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"clientKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}