> 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/retrieve-call-token.md).

# Retrieve Call Token

GET /user/profile/call-token/

The `GET /user/profile/call-token/` endpoint retrieves the call token associated with the user's profile. The call token is used for initiating or managing calls.

***

#### **Parameters**

This endpoint does not require any parameters.

***

#### **Responses**

| **Code** | **Description**                        |
| -------- | -------------------------------------- |
| 200      | Successfully retrieved the call token. |

**Example Response**

```json
{
  "call_token": "sample-call-token-123"
}
```

#### **Response Model**

| **Field**    | **Type** | **Description** | **Constraints**            |
| ------------ | -------- | --------------- | -------------------------- |
| `call_token` | String   | The call token. | Max length: 255, nullable. |
