← 2Captcha + Tally integrations

Get Form Fields with Tally API on New Captcha Solved from 2Captcha API

Pipedream makes it easy to connect APIs for Tally, 2Captcha and 3,000+ other apps remarkably fast.

Trigger workflow on
New Captcha Solved from the 2Captcha API
Next, do this
Get Form Fields with the Tally API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a 2Captcha trigger and Tally action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Captcha Solved trigger
    1. Connect your 2Captcha account
    2. Configure timer
    3. Configure Task ID
  3. Configure the Get Form Fields action
    1. Connect your Tally account
    2. Select a Form
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a captcha has been successfully solved by the 2Captcha service.
Version:0.0.1
Key:_twocaptcha-captcha-solved

2Captcha Overview

The 2Captcha API enables automated solving of captchas and reCaptcha. On Pipedream, you can integrate this API into workflows to handle captcha challenges when scraping websites, automating form submissions, or any process that encounters captchas. The API takes the captcha image or reCaptcha data as input and returns the text or token needed to bypass the captcha, effectively allowing your automations to mimic human interaction.

Trigger Code

import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
import _twocaptcha from "../../_twocaptcha.app.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  key: "_twocaptcha-captcha-solved",
  name: "New Captcha Solved",
  description: "Emit new event when a captcha has been successfully solved by the 2Captcha service.",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    _twocaptcha,
    timer: {
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
    taskId: {
      type: "string",
      label: "Task ID",
      description: "The ID of the captcha task you want to get the result for.",
    },
  },
  methods: {
    generateMeta() {
      const ts = Date.now();
      return {
        id: `${this.taskId}-${ts}`,
        summary: "Chaptcha successfully solved!",
        ts,
      };
    },
    async startEvent() {
      let response = await this._twocaptcha.getTaskResult({
        data: {
          taskId: this.taskId,
        },
      });

      if (response.status && response.status === "ready") {
        this.$emit(response, this.generateMeta(response));
      }
    },
  },
  async run() {
    await this.startEvent();
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
2Captcha_twocaptchaappThis component uses the 2Captcha app.
timer$.interface.timer
Task IDtaskIdstring

The ID of the captcha task you want to get the result for.

Trigger Authentication

2Captcha uses API keys for authentication. When you connect your 2Captcha account, Pipedream securely stores the keys so you can easily authenticate to 2Captcha APIs in both code and no-code steps.

Sign in and copy your API Key from Account Settings

About 2Captcha

Captcha Solving Service. 2captcha is a service for solving CAPTCHA. We solve all types of.

Action

Description:Get the fields of a form. [See docs here](https://tallyso.notion.site/Tally-OAuth-2-reference-d0442c679a464664823628f675f43454)
Version:0.0.2
Key:tally-get-form-fields

Tally Overview

The Tally API offers a suite of automation capabilities for Tally, a form-building platform that allows users to create forms without needing to code. Leveraging this API within Pipedream can supercharge your data collection and processing. With Pipedream, you can react to form submissions in real-time, sync data to other services, and customize your workflows to suit various use cases including data analysis, lead capture, and feedback management.

Action Code

import tally from "../../tally.app.mjs";

export default {
  name: "Get Form Fields",
  version: "0.0.2",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: true,
  },
  key: "tally-get-form-fields",
  description: "Get the fields of a form. [See docs here](https://tallyso.notion.site/Tally-OAuth-2-reference-d0442c679a464664823628f675f43454)",
  type: "action",
  props: {
    tally,
    formId: {
      propDefinition: [
        tally,
        "form",
      ],
    },
  },
  async run({ $ }) {
    const response = await this.tally.getFormFields({
      formId: this.formId,
      $,
    });

    $.export("$summary", "Successfully retrieved form fields");

    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
TallytallyappThis component uses the Tally app.
FormformIdstringSelect a value from the drop down menu.

Action Authentication

Tally uses OAuth authentication. When you connect your Tally account, Pipedream will open a popup window where you can sign into Tally and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Tally API.

Pipedream requests the following authorization scopes when you connect your account:

userformsresponseswebhooks

About Tally

Tally is the simplest way to create beautiful forms & surveys, for free.

More Ways to Connect Tally + 2Captcha

Retrieve Captcha Solution with 2Captcha API on New Response (Instant) from Tally API
Tally + 2Captcha
 
Try it
Check 2Captcha Account Balance with 2Captcha API on New Response (Instant) from Tally API
Tally + 2Captcha
 
Try it
Submit Captcha for Solving with twocaptcha API on New Response (Instant) from Tally API
Tally + 2Captcha
 
Try it
Get Forms with Tally API on New Captcha Solved from 2Captcha API
2Captcha + Tally
 
Try it
Get Responses with Tally API on New Captcha Solved from 2Captcha API
2Captcha + Tally
 
Try it
New 2Captcha Balance Updated from the 2Captcha API

Emit new event when the user's balance in 2Captcha API is changed.

 
Try it
New Captcha Solved from the 2Captcha API

Emit new event when a captcha has been successfully solved by the 2Captcha service.

 
Try it
New Response (Instant) from the Tally API

Emit new event on each form message. See the documentation

 
Try it
Check 2Captcha Account Balance with the 2Captcha API

Get the current account balance from the 2Captcha API. See the documentation

 
Try it
Retrieve Captcha Solution with the 2Captcha API

Fetch the solution of a previously submitted captcha from the 2Captcha service.

 
Try it
Submit Captcha for Solving with the 2Captcha API

Send a new captcha to the 2Captcha service for solving. Required props are clientKey and task object.

 
Try it
Get Form Fields with the Tally API

Get the fields of a form. See docs here

 
Try it
Get Forms with the Tally API

Get a list of forms. See docs here

 
Try it

Explore Other Apps

1
-
24
of
3,000+
apps by most popular

Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Premium
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Premium
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Premium
Klaviyo unifies your data, channels, and AI agents in one platform—text, WhatsApp, email marketing, and more—driving growth with every interaction.
Zendesk
Zendesk
Premium
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
Premium
Beta
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.