{
  "info": {
    "name": "Captcha Solver — mcp.ai",
    "description": "REST API for the Captcha Solver 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/captcha",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "captcha_get_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "result"
          ]
        },
        "description": "Consulta o resultado de uma task de captcha já criada, pelo task_id. Não é cobrado (a cobrança ocorre na solve que criou a task).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"task_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "captcha_solve_hcaptcha",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/solve/hcaptcha",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "solve",
            "hcaptcha"
          ]
        },
        "description": "Resolve um desafio hCaptcha. Retorna o token pra submeter no site alvo. Cobrado em créditos por solve.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"website_url\": \"\",\n  \"website_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "captcha_solve_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/solve/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "solve",
            "image"
          ]
        },
        "description": "Resolve um captcha de imagem (texto distorcido). Envie a imagem em base64; retorna o texto reconhecido. Cobrado em créditos por solve.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body_base64\": \"\",\n  \"module\": \"\",\n  \"case_sensitive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "captcha_solve_recaptcha_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/solve/recaptcha/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "solve",
            "recaptcha",
            "v2"
          ]
        },
        "description": "Resolve um desafio reCAPTCHA v2. Retorna um token (gRecaptchaResponse) pra submeter no site alvo. Cobrado em créditos pré-pagos por solve.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"website_url\": \"\",\n  \"website_key\": \"\",\n  \"is_invisible\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "captcha_solve_recaptcha_v3",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/solve/recaptcha/v3",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "solve",
            "recaptcha",
            "v3"
          ]
        },
        "description": "Resolve um desafio reCAPTCHA v3. Retorna um token (gRecaptchaResponse). Informe a page_action esperada pelo site. Cobrado em créditos por solve.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"website_url\": \"\",\n  \"website_key\": \"\",\n  \"page_action\": \"\",\n  \"min_score\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "captcha_solve_turnstile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/solve/turnstile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "solve",
            "turnstile"
          ]
        },
        "description": "Resolve um desafio Cloudflare Turnstile. Retorna o token. Cobrado em créditos por solve.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"website_url\": \"\",\n  \"website_key\": \"\",\n  \"action\": \"\",\n  \"cdata\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}