Skip to main content
GET
/
providers
/
{id}
/
tools
List Provider Tools
curl --request GET \
  --url https://api.example.com/providers/{id}/tools \
  --header 'Authorization: Bearer <token>'
{
  "tools": [
    {
      "id": "kSuB9Gf6aD4",
      "providerID": "kSuB9Gf6aD4",
      "method": "GET",
      "path": "/users/{id}",
      "name": "makePayment",
      "title": "Make Payment",
      "description": "<string>",
      "pathArgsJSONSchema": {},
      "queryArgsJSONSchema": {},
      "reqBodyJSONSchema": {},
      "headers": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ],
      "oauth2Scopes": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter 'Bearer' followed by a space and your token (e.g., 'Bearer ${HASMCP_ACCESS_TOKEN}').

Path Parameters

id
string
required

Provider ID

Response

200 - application/json

A list of provider tools

tools
object[]