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

# List Tools

> Get a list of all available tools

Get a complete list of all available tools. Use search or service filtering for more targeted results.

## Example

```bash theme={null}
curl -X GET "https://api.danubeai.com/v1/tools" \
  -H "danube-api-key: YOUR_API_KEY"
```


## OpenAPI

````yaml GET /tools
openapi: 3.0.1
info:
  title: Danube API
  description: Tool discovery and execution platform for AI assistants
  version: 1.0.0
servers:
  - url: https://api.danubeai.com/v1
security: []
paths:
  /tools:
    get:
      summary: List All Tools
      description: Get a list of all available tools
      operationId: listTools
      responses:
        '200':
          description: List of tools
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Tool'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    Tool:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the tool
        name:
          type: string
          description: Display name of the tool
        description:
          type: string
          description: What the tool does
        service_id:
          type: string
          description: ID of the service this tool belongs to
        parameters:
          type: object
          description: JSON Schema defining the tool's input parameters
        status:
          type: string
          enum:
            - active
            - inactive
          description: Whether the tool is currently active
        tags:
          type: array
          items:
            type: string
          description: Tags for categorizing the tool
    Error:
      type: object
      properties:
        detail:
          type: string
          description: Error message
  securitySchemes:
    apiKey:
      type: apiKey
      name: danube-api-key
      in: header
      description: Your Danube API key

````