DiscordAccountRegisterAction
Automated Discord account registration with captcha solving, email verification, and unlock check.
DiscordAccountRegisterAction handles fully automated Discord account creation in a single call. It covers registration, captcha solving, email verification, and unlock checking.
What you get back
token: Discord authentication token for the new account.emailandpassword: credentials for the created account.status: lock state. One ofunlocked,locked, oremail_locked.verify: email verification result.verifiedorfailed_to_verify.
Custom emails may trigger email_locked
When using a custom email instead of letting the provider auto-generate one, the account may receive email_locked
status. Auto-generated emails are fully verified by the provider.
Optional fields are not guaranteed across providers
Supported Providers
| Provider | Price per 1,000 | Routing |
|---|---|---|
| $3.50 | Auto CheapestAuto FastestAuto Most Reliable |
Request Schema
| Field | Type | Required | Description |
|---|---|---|---|
clientKey* | string | Yes | Your API key from the AnySolver dashboard. Example: |
task* | object | Yes | |
provider | No | Specific provider to use. If omitted, automatic routing selects the best provider. Example: | |
selectionMode | No | Read more at the routing strategies docs. Example: | |
keyPoolMode | No | Example: |
Task Object Properties
The task field accepts an object with the following properties:
| Field | Type | Required | Description |
|---|---|---|---|
type* | Yes | ||
proxy* | string | object | Yes | |
email | string | No | Custom email address for registration. If omitted, one is auto-generated and verified. Example: |
Response Schema
| Field | Type | Required | Description |
|---|---|---|---|
status* | Yes | Task status: "processing", "ready", or "failed". Example: | |
errorId* | Yes | 0 = success, 1 = external error, 2 = internal error. Example: | |
taskId | string | No | Unique identifier returned when the task was created. Example: |
errorCode | No | Machine-readable error code (e.g., "CAPTCHA_UNSOLVABLE"). Example: | |
errorDescription | string | No | Human-readable error message with resolution hints. Example: |
cost | number | No | Actual cost charged for this task in USD. Example: |
taskType | No | The type of CAPTCHA task to solve. Example: | |
provider | No | Specific provider to use. If omitted, automatic routing selects the best provider. Example: | |
solution | object | No |
Solution Object Properties
The solution field contains an object with the following properties:
| Field | Type | Required | Description |
|---|---|---|---|
token* | string | Yes | Discord authentication token for the newly created account. Example: |
email* | string | Yes | Email address used for the account (auto-generated or the one you provided). Example: |
password* | string | Yes | Password for the newly created account. Example: |
status* | Yes | Account lock status: "unlocked", "locked", or "email_locked". Example: | |
verify* | Yes | Email verification result: "verified" or "failed_to_verify". Example: | |
raw* | Record<string, unknown> | Yes | Raw provider response data for advanced use cases. |