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: <api-key>'
{
  "success": true,
  "tool_registries": [
    {
      "id": 123,
      "name": "<string>",
      "workspace_id": 123,
      "folder_id": 123,
      "created_at": "<string>",
      "updated_at": "<string>",
      "external_ids": [
        {
          "source": "<string>",
          "external_id": "<string>"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.promptlayer.com/llms.txt

Use this file to discover all available pages before exploring further.

List all tools in the Tool Registry for the workspace. Returns tool names, IDs, and metadata ordered by most recently updated.

Authorizations

X-API-KEY
string
header
required

Query Parameters

created_by_email
string

Filter by the creator's email address.

created_after
string<date-time>

Filter resources created at or after this timestamp.

created_before
string<date-time>

Filter resources created at or before this timestamp.

updated_after
string<date-time>

Filter resources updated at or after this timestamp.

updated_before
string<date-time>

Filter resources updated at or before this timestamp.

external_source
string

External ID source to filter by. Must be provided with external_id.

external_id
string

External ID value to filter by. Must be provided with external_source.

sort_by
enum<string>

Sort field.

Available options:
created_at,
updated_at,
name,
id
sort_order
enum<string>
default:desc

Sort direction.

Available options:
asc,
desc

Response

Successful Response

success
boolean
tool_registries
object[]