---
title: "list tools"
method: GET
path: "/v1/tools"
tags: ["Tools"]
---

# list tools

`GET /v1/tools`

Returns a list of all tools for the organization

## Query parameters

- `page` integer
- `perPage` integer
- `search` string

## Response `200`

Successfully retrieved tools

- object
  - `data` Tool[]
    - `id` string, uuid — Unique identifier for the tool
    - `name` string — Name of the tool
    - `description` string — Description of what the tool does
    - `type` 'CLIENT' | 'SERVER_RAG' | 'SERVER_WEBHOOK' | 'SYSTEM' — Type of tool
    - `config` object — Type-specific configuration
    - `disableInterruptions` boolean — When true, interruptions are disabled while this tool is executing
    - `createdAt` string, date-time — When the tool was created
    - `updatedAt` string, date-time, nullable — When the tool was last updated
    - `usageCount` integer — Number of personas using this tool
  - `meta` Pagination — Pagination metadata returned alongside the `data` array of every list endpoint.
    - `total` integer — Total number of items across all pages.
    - `lastPage` integer — Number of the last page.
    - `currentPage` integer — Number of the current page.
    - `perPage` integer — Number of items per page.
    - `prev` integer, nullable — Number of the previous page, or null if on the first page.
    - `next` integer, nullable — Number of the next page, or null if on the last page.

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - API key lacks the required permission
- `500` — Server error

---

[API](https://skmtc.net/anam/apis/anam-ai-api.md) · [All operations](https://skmtc.net/anam/apis/anam-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/anam/anam-ai-api/revisions/67afd1c5db59/schema)
