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

# List Tools



## OpenAPI

````yaml GET /tools
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /tools:
    get:
      tags:
        - Tools
      summary: List tools
      operationId: listTools
      parameters:
        - in: query
          name: agent_id
          schema:
            type: string
            format: uuid
          description: >-
            Filter tools attached to a specific agent. When provided, also
            returns `execution_order` and `config_override` per tool.
        - in: query
          name: limit
          schema:
            type: integer
            default: 50
            maximum: 100
        - in: query
          name: offset
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: List of tools
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Tool'
                  pagination:
                    type: object
                    properties:
                      total:
                        type: integer
                      limit:
                        type: integer
                      offset:
                        type: integer
                      has_more:
                        type: boolean
components:
  schemas:
    Tool:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          description: Normalized to camelCase (e.g. 'capture_lead' → 'captureLead')
        description:
          type: string
          nullable: true
        type:
          type: string
          enum:
            - webhook
            - function
        config:
          type: object
        is_active:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````