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

# Get Endpoint Status



## OpenAPI

````yaml openapi.json GET /endpoints/{endpoint_id}
openapi: 3.1.0
info:
  title: AirCloud External API
  description: Public REST API for managing AirCloud endpoints programmatically.
  version: 1.0.0
  contact:
    name: support
    url: https://aieev.com
    email: support@aieev.cloud
servers:
  - url: https://external.aieev.cloud:5007/external/api/v1
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Verify API key context.
  - name: Endpoints
    description: 'Manage endpoints: list, start, stop, scale, and patch.'
  - name: Replicas
    description: View live replica status.
  - name: Logs
    description: Access endpoint log files.
paths:
  /endpoints/{endpoint_id}:
    get:
      tags:
        - Endpoints
      summary: Get Endpoint Status
      description: >-
        Returns the current status of an endpoint. Includes replica status
        summary when active.
      operationId: getEndpointStatus
      parameters:
        - name: endpoint_id
          in: path
          required: true
          description: Unique endpoint ID.
          schema:
            type: string
            example: 51c910f7-ecde-4c6c-88f8-d8e37ca9d598
      responses:
        '200':
          description: Endpoint status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EndpointStatusResponse'
        '403':
          description: Endpoint does not belong to your organization or project.
        '404':
          description: Endpoint not found.
components:
  schemas:
    EndpointStatusResponse:
      type: object
      properties:
        endpoint_id:
          type: string
          description: Unique endpoint ID.
          example: 51c910f7-ecde-4c6c-88f8-d8e37ca9d598
        name:
          type: string
          description: Endpoint name.
          example: aieev-endpoint
        endpoint_type:
          type: string
          description: Endpoint type.
          example: container
        is_active:
          type: boolean
          description: Whether the endpoint is active.
          example: true
        status:
          type: string
          description: Current status. When active, fetched in real-time from Ray Serve.
          example: RUNNING
        num_replicas:
          type: integer
          description: Current number of replicas.
          example: 2
        enable_autoscaling:
          type: boolean
          description: Whether autoscaling is enabled.
          example: false
        instance_type_name:
          type: string
          nullable: true
          description: Instance type name.
          example: RTX 5090
        serving_endpoint_url:
          type: string
          nullable: true
          description: Public endpoint URL.
          example: https://ap-1.aieev.cloud/ac/7/51c910f7-ecde-4c6c-88f8-d8e37ca9d598
        replica_status_summary:
          type: object
          nullable: true
          additionalProperties:
            type: integer
          description: Replica count by status. Only available when endpoint is active.
          example:
            RUNNING: 2
            STARTING: 0
        created_at:
          type: string
          format: date-time
          description: Creation time.
        updated_at:
          type: string
          format: date-time
          description: Last update time.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass your API key as a Bearer token. Create API keys in the project
        overview.

````