ℹī¸/actions

Get the list of supported actions

GET https://api.brianknows.org/api/v0/utils/actions

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

Headers

NameValue

Content-Type

application/json

Body

The body is empty.

Response

{
  "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
        }
      ]
    },
    .....
    ]

Last updated