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

# List Tools

> Returns all available tools with their descriptions and parameters.



## OpenAPI

````yaml GET /v1/tools
openapi: 3.0.3
info:
  title: Mako API
  description: >-
    OpenAI-compatible API with autonomous tool orchestration for on-chain data,
    web search, and more.
  version: 1.0.0
  contact:
    name: DeepMako
    url: https://deepmako.com
servers:
  - url: https://gateway.deepmako.com
    description: Production
security:
  - walletAddress: []
    bearerAuth: []
paths:
  /v1/tools:
    get:
      tags:
        - Endpoints
      summary: List Tools
      description: Returns all available tools with their descriptions and parameter names.
      operationId: listTools
      responses:
        '200':
          description: List of available tools
          content:
            application/json:
              schema:
                type: object
                properties:
                  tools:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          example: get_eth_balance
                        description:
                          type: string
                          example: Get ETH balance of an address on any EVM chain
                        params:
                          type: array
                          items:
                            type: string
                          example:
                            - address
                            - chain
components:
  securitySchemes:
    walletAddress:
      type: apiKey
      in: header
      name: x-wallet-address
      description: Your EVM wallet address for authentication and credit tracking.
    bearerAuth:
      type: http
      scheme: bearer
      description: API key obtained from the gateway. Not required in free mode.

````