---
title: "List agent custom tools"
method: GET
path: "/api/v0/agent/tools"
tags: ["Agent Tools"]
---

# List agent custom tools

`GET /api/v0/agent/tools`

List all custom tools for the current user.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- AgentCustomToolListResponse — Response for listing agent custom tools.
  - `tools` AgentCustomToolGetResponse[], required — The list of custom tools.
    - `id` string, uuid, required — The ID of the tool.
    - `tool_type` string, required — The tool type (python, prompt, api).
    - `name` string, required — The name of the tool.
    - `description` string, required — The description of the tool.
    - `parameters` object[], nullable — The parameter definitions.
    - `code` string, required — The code/prompt/config body.
    - `created_at` string, date-time, required — When the tool was created.
    - `updated_at` string, date-time, required — When the tool was last updated.
  - `pagination` PaginationMetadata, required
    - `total` integer, required — The total number of items matching the query.
    - `limit` integer, required — The maximum number of items per page.
    - `offset` integer, required — The number of items skipped.
    - `has_more` boolean, required — Whether there are more items available.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/outerport/apis/outerport-api.md) · [All operations](https://skmtc.dev/outerport/apis/outerport-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/outerport/outerport-api/revisions/f565b46daaea/schema)
