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

# Get endpoint status

> Get status and metrics for each endpoint



## OpenAPI

````yaml openapi.json get /monitoring/endpoints
openapi: 3.0.0
info:
  description: Dualship backend API for workflow automation and API management.
  title: Dualship API
  termsOfService: https://dualship.run/terms
  contact:
    name: Dualship Support
    url: https://dualship.run/support
    email: support@dualship.run
  version: '1.0'
servers:
  - url: https://api.dualship.run
security: []
paths:
  /monitoring/endpoints:
    get:
      tags:
        - monitoring
      summary: Get endpoint status
      description: Get status and metrics for each endpoint
      responses:
        '200':
          description: Endpoint statuses
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/internal_api_handler.EndpointStatusListResponse
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/internal_api_handler.UnauthorizedError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/internal_api_handler.InternalServerError'
      security:
        - BearerAuth: []
components:
  schemas:
    internal_api_handler.EndpointStatusListResponse:
      description: List of endpoint statuses
      type: object
      properties:
        endpoints:
          type: array
          items:
            $ref: '#/components/schemas/internal_api_handler.EndpointStatus'
    internal_api_handler.UnauthorizedError:
      description: Unauthorized error
      type: object
      properties:
        code:
          type: string
          example: UNAUTHORIZED
        error:
          type: string
          example: unauthorized
    internal_api_handler.InternalServerError:
      description: Internal server error
      type: object
      properties:
        code:
          type: string
          example: INTERNAL_ERROR
        error:
          type: string
          example: internal server error
    internal_api_handler.EndpointStatus:
      description: Endpoint status information
      type: object
      properties:
        method:
          type: string
          example: GET
        path:
          type: string
          example: /api/v1/flows
        response_time:
          type: integer
          example: 120
        status:
          type: string
          example: operational
        uptime:
          type: number
          example: 99.9
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT Bearer token authentication

````