> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentcard.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# verify_phone

> Check the one-time code the user received from start_phone_verification.

Connect to `https://mcp.agentcard.sh/mcp` with the **user's connection token** (or a `buy_token` for org-owned accounts).

## What it does

Check the one-time code the user received from start\_phone\_verification. On success the balance is unlocked for funding (the verification stays fresh for 60 days) — call add\_funds next. A wrong or expired code returns a recoverable status so you can ask the user to re-check it, or call start\_phone\_verification to resend.

## Inputs

| Field               | Type   | Description                                                                                             |
| ------------------- | ------ | ------------------------------------------------------------------------------------------------------- |
| `code` *(required)* | string | The one-time code the user received, as a string (keep any leading zeros — do not send it as a number). |

## Returns

| Field                  | Type   | Description                         |
| ---------------------- | ------ | ----------------------------------- |
| `message` *(required)* | string | Human-readable result or next step. |

## Example call

```json theme={null}
{
  "tool": "verify_phone",
  "arguments": {
    "code": "\u2026"
  }
}
```
