> For the complete documentation index, see [llms.txt](https://docs.brianknows.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.brianknows.org/brian-api/apis/actions.md).

# /actions

## Get the list of supported actions

<mark style="color:green;">`GET`</mark> `https://api.brianknows.org/api/v0/utils/actions`

Returns all the actions supported by Brian with the related parameters and descriptions.

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |

**Body**

The body is empty.

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "result": [
    {
      "name": "transfer",
      "description": "Movement of digital assets from one account to another within the blockchain network.",
      "parameters": [
        {
          "name": "receiver",
          "type": "string",
          "description": "The recipient address",
          "mandatory": true
        },
        {
          "name": "token1",
          "type": "string",
          "description": "The token to transfer",
          "mandatory": true
        },
        {
          "name": "amount",
          "type": "string",
          "description": "The amount of tokens to transfer",
          "mandatory": true
        },
        {
          "name": "chain",
          "type": "string",
          "description": "The blockchain network to use",
          "mandatory": false
        }
      ]
    },
    .....
    ]
```

{% endtab %}
{% endtabs %}
