---
title: "Get Agent Tool"
method: GET
path: "/api/v1/tools/{id}/"
tags: ["AgentToolService"]
---

# Get Agent Tool

`GET /api/v1/tools/{id}/`

Fetch a single tool by ID for the authenticated organization.

## Path parameters

- `id` string, uuid, required

## Response `200`

Tool fetched successfully

- GetAgentToolResponse
  - `success` boolean
  - `message` string
  - `data` AgentTool
    - `id` string — Tool UUID
    - `organizationId` string — Organization UUID
    - `name` string — Tool name
    - `description` string — Tool description
    - `type` string — Tool type
    - `definition` AgentToolDefinition — Tool definition payload.
      - `url` string
      - `method` string
      - `parameters` object
        - `type` string
        - `properties` object
    - `isActive` boolean — Whether the tool is active
    - `agentId` string — Agent UUID attached to the tool
    - `enabledFunctions` AgentToolEnabledFunctions
      - `values` string[]

## Other responses

- `400` — Invalid UUID
- `401` — Unauthenticated
- `404` — Tool not found
- `500` — Internal server error

---

[API](https://skmtc.net/ravan/apis/agni-api.md) · [All operations](https://skmtc.net/ravan/apis/agni-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ravan/agni-api/revisions/48f45dc58534/schema)
