> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lyzr.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User Tools

> Retrieves all tools associated with a user.

### Endpoint

**GET** `/v3/tools/`

### Description

Retrieves all tools associated with a user.

### Authentication

API Key (`x-api-key`) in the header.

### Request

```bash theme={null}
curl -X GET "https://agent-prod.studio.lyzr.ai/v3/tools/" ^
-H "accept: application/json" ^
-H "x-api-key: sk-default-REDACTED"
```

### Response

Returns a list of tools available for the user.

***


## OpenAPI

````yaml get /tools/
openapi: 3.0.3
info:
  title: Lyzr User Tools API
  version: 1.0.0
servers:
  - url: https://agent-prod.studio.lyzr.ai/v3
security: []
paths:
  /tools/:
    get:
      tags:
        - Tools
      summary: Get User Tools
      description: Retrieves all tools associated with a user.
      operationId: getUserTools
      responses:
        '200':
          description: List of tools retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  tools:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: tool123
                        name:
                          type: string
                          example: Sample Tool
                        description:
                          type: string
                          example: This is a sample tool description.
                        type:
                          type: string
                          example: openapi
                required:
                  - tools
        '401':
          description: Unauthorized - Invalid API key
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````