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

# List Services

> Get all available services. No authentication required.

Get a list of all available service providers. This endpoint is public and does not require authentication.

## Example

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


## OpenAPI

````yaml GET /services/public
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:
    get:
      summary: List Services
      description: Get all available services. No authentication required.
      operationId: listServices
      responses:
        '200':
          description: List of services
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Service'
components:
  schemas:
    Service:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the service
        name:
          type: string
          description: Display name of the service
        description:
          type: string
          description: Service description
        summary:
          type: string
          description: Short summary of the service
        url:
          type: string
          description: Service website URL
        logo_url:
          type: string
          description: URL to the service logo
        version:
          type: string
          description: Service version

````