Mix LogoMix

Get tools status

Get status and authentication information for all available tools and categories

Get status and authentication information for all available tools and categories

GET
/api/tools/status

Response Body

from mix_python_sdk import Mixwith Mix() as mix:    res = mix.tools.get_tools_status()    # Handle response    print(res)
{
  "categories": {
    "property1": {
      "display_name": "string",
      "tools": [
        {
          "api_key_required": true,
          "authenticated": true,
          "description": "string",
          "display_name": "string",
          "provider": "string"
        }
      ]
    },
    "property2": {
      "display_name": "string",
      "tools": [
        {
          "api_key_required": true,
          "authenticated": true,
          "description": "string",
          "display_name": "string",
          "provider": "string"
        }
      ]
    }
  }
}
{
  "error": {
    "code": 0,
    "message": "string",
    "type": "bad_request"
  }
}