Skip to main content
GET
/
api
/
public
/
v2
/
tool-registry
List Tool Registries
curl --request GET \
  --url https://api.promptlayer.com/api/public/v2/tool-registry \
  --header 'X-API-KEY: <x-api-key>'
{
  "success": true,
  "tool_registries": [
    {
      "id": 123,
      "name": "<string>",
      "workspace_id": 123,
      "folder_id": 123,
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}
List all tools in the Tool Registry for the workspace. Returns tool names, IDs, and metadata ordered by most recently updated.

Headers

X-API-KEY
string
required

Response

200 - application/json

Successful Response

success
boolean
tool_registries
object[]