> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/user/user-verify-otp-list.md).

# User Verify OTP List

The `GET /user/verify-otp/` endpoint retrieves the details required for OTP verification using the provided email address and OTP code.

***

#### **Parameters**

| **Name**                                  | **Type** | **Description** |
| ----------------------------------------- | -------- | --------------- |
| No parameters required for this endpoint. |          |                 |

***

#### **Responses**

**Success Response (200)**

A list containing the OTP verification details.

| **Field**  | **Type**       | **Description**                            |
| ---------- | -------------- | ------------------------------------------ |
| `email`    | string (email) | The email address associated with the OTP. |
| `otp_code` | string         | The OTP code entered by the user.          |

**Example Response Body**

```json
[
  {
    "email": "user@example.com",
    "otp_code": "123456"
  }
]
```
