Overview
GET/access/personas/{id}/toolsregistry

List a persona's grantable tool catalog + each tool's grant/autonomy state

Fetch a record from tools by id.

Auth: bearerAuth — calls run as the authenticated user.

Parameters
  • idpathstring
Responses
200

the grantable tool catalog

  • toolsRegistryPersonaToolCatalogItem[]
Example
{
  "tools": [
    {
      "toolName": "string",
      "source": "string",
      "displayName": "string",
      "description": "string",
      "readOnly": true,
      "granted": true,
      "autonomous": true
    }
  ]
}
400

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
401

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
403

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
404

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/access/personas/{id}/tools" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/access/personas/{id}/tools", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();