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

# List available tools

> Fetches available tools in Sol, optionally filtered by apps.



## OpenAPI

````yaml sol-open-api-spec.yaml get /tools
openapi: 3.0.0
info:
  title: Sol API
  description: >-
    API for managing AI-powered tool integrations in third-party applications,
    enabling seamless automation and execution of tasks.
  version: 1.0.0
servers:
  - url: https://api.sol.com/v1
    description: Main (production) server
security: []
paths:
  /tools:
    get:
      summary: List available tools
      description: Fetches available tools in Sol, optionally filtered by apps.
      parameters:
        - in: query
          name: apps
          schema:
            type: array
            items:
              type: string
          description: >-
            Optional list of apps to filter tools by (e.g., google-calendar,
            gmail, github)
      responses:
        '200':
          description: A list of available tools
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    toolId:
                      type: string
                      description: Unique ID of the tool
                      example: tool-6789
                    name:
                      type: string
                      description: Name of the tool
                      example: Create Email Draft
                    provider:
                      type: string
                      description: Provider of the tool (e.g., Gmail, Outlook)
                      example: Gmail

````