GET
/
manager
/
projects
curl --request GET \
  --url https://api-staging.boost.xyz/manager/projects
{
  "projects": [
    {
      "id": "<string>",
      "name": "<string>",
      "imagePath": "<string>",
      "tasks": [
        {
          "id": "<string>",
          "name": "<string>",
          "projectId": "<string>",
          "type": "<string>",
          "networks": [
            "eth-mainnet"
          ],
          "chainIds": [
            123
          ],
          "abiFilter": [
            {
              "name": "<string>",
              "type": "<string>",
              "anonymous": true,
              "payable": true,
              "constant": true,
              "stateMutability": "<string>",
              "inputs": [
                {
                  "name": "<string>",
                  "indexed": true,
                  "type": "<string>",
                  "internalType": "<string>",
                  "components": [
                    "<any>"
                  ]
                }
              ],
              "outputs": [
                {
                  "name": "<string>",
                  "indexed": true,
                  "type": "<string>",
                  "internalType": "<string>",
                  "components": [
                    "<any>"
                  ]
                }
              ],
              "gas": "<string>"
            }
          ],
          "eventName": "<string>",
          "contractAddress": "<string>",
          "actionPluginId": "<string>"
        }
      ]
    }
  ]
}

Response

200
application/json
Success
projects
object[]
required