> ## 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.

# Execute Tool

> Run a specific tool directly with the given arguments.



## OpenAPI

````yaml POST /v1/tools/execute
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/execute:
    post:
      tags:
        - Endpoints
      summary: Execute Tool
      description: >-
        Run a specific tool directly with the given arguments. Returns
        structured JSON data without going through the chat completion flow.
      operationId: executeTool
      parameters:
        - name: x-wallet-address
          in: header
          required: true
          description: Your EVM wallet address.
          schema:
            type: string
            example: '0x0000000000000000000000000000000000000001'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - tool
              properties:
                tool:
                  type: string
                  description: The tool name to execute.
                  example: get_eth_balance
                  enum:
                    - get_eth_balance
                    - get_token_balance
                    - get_token_info
                    - get_gas_price
                    - get_block
                    - get_tx_count
                    - is_contract
                    - resolve_ens
                    - get_transaction
                    - get_crypto_price
                    - web_search
                    - web_extract
                    - read_tweet
                    - find_music
                    - knowledge_search
                    - list_tools
                    - get_weather
                    - get_time
                args:
                  type: object
                  description: Arguments to pass to the tool.
                  example:
                    address: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
                    chain: base
      responses:
        '200':
          description: Tool execution result
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    example: true
                  tool:
                    type: string
                    example: get_eth_balance
                  result:
                    type: object
                    example:
                      address: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
                      balance_wei: '5688914350696581971'
                      balance_eth: '5.688914350696581971'
                      chain: Base
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.

````