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

# Get Service Tools

> Get all tools for a specific service. No authentication required.

Get all tools available from a specific service provider. This endpoint is public and does not require authentication.

## Example

```bash theme={null}
curl -X GET "https://api.danubeai.com/v1/services/public/hacker_news/tools"
```


## OpenAPI

````yaml GET /services/public/{service_id}/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:
  /services/public/{service_id}/tools:
    get:
      summary: Get Service Tools
      description: Get all tools for a specific service. No authentication required.
      operationId: getServiceTools
      parameters:
        - name: service_id
          in: path
          description: The unique identifier of the service
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of tools for the service
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Tool'
        '404':
          description: Service not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
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

````