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

> Get a specific service by ID. No authentication required.

Get detailed information about 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"
```


## OpenAPI

````yaml GET /services/public/{service_id}
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}:
    get:
      summary: Get Service
      description: Get a specific service by ID. No authentication required.
      operationId: getService
      parameters:
        - name: service_id
          in: path
          description: The unique identifier of the service
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Service details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Service'
        '404':
          description: Service not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
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
    Error:
      type: object
      properties:
        detail:
          type: string
          description: Error message

````