> ## Documentation Index
> Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt
> Use this file to discover all available pages before exploring further.

# Get node status

> This operation retrieves the online status of the TSS node associated with a specific wallet. The wallet ID can be retrieved by calling the List all wallets operation. The response indicates whether the node is currently online and available for signing.



## OpenAPI

````yaml get /api/v1/wallets/{wallet_uuid}/node-status
openapi: 3.1.0
info:
  title: Cobo Agentic Wallet Service
  description: Unified wallet engine for human and agent principals
  version: 1.3.0
servers: []
security: []
paths:
  /api/v1/wallets/{wallet_uuid}/node-status:
    get:
      tags:
        - Wallets
      summary: Get node status
      description: >-
        This operation retrieves the online status of the TSS node associated
        with a specific wallet. The wallet ID can be retrieved by calling the
        List all wallets operation. The response indicates whether the node is
        currently online and available for signing.
      operationId: get_wallet_node_status
      parameters:
        - name: wallet_uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Wallet Uuid
        - name: X-API-Key
          in: header
          required: false
          schema:
            title: X-Api-Key
            type: string
            nullable: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse_NodeStatusRead_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WrappedValidationError'
components:
  schemas:
    StandardResponse_NodeStatusRead_:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        result:
          $ref: '#/components/schemas/NodeStatusRead'
        suggestion:
          type: string
          title: Suggestion
          default: ''
        message:
          type: string
          title: Message
          default: ''
        meta:
          $ref: '#/components/schemas/PaginationMeta'
          nullable: true
      type: object
      required:
        - result
      title: StandardResponse[NodeStatusRead]
    WrappedValidationError:
      title: WrappedValidationError
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          const: false
          default: false
          title: Success
        error:
          type: object
          title: Error
          required:
            - detail
          properties:
            detail:
              type: array
              title: Detail
              items:
                $ref: '#/components/schemas/ValidationError'
    NodeStatusRead:
      properties:
        name:
          title: Name
          type: string
          nullable: true
        type:
          title: Type
          type: string
          nullable: true
        tss_node_id:
          title: Tss Node Id
          type: string
          nullable: true
        online:
          title: Online
          type: boolean
          nullable: true
        signer:
          title: Signer
          type: boolean
          nullable: true
        status:
          title: Status
          type: string
          nullable: true
        account_id:
          title: Account Id
          type: string
          nullable: true
      type: object
      title: NodeStatusRead
      description: TSS node status from Cobo WaaS key share holder info.
    PaginationMeta:
      properties:
        total:
          title: Total
          type: integer
          nullable: true
        offset:
          title: Offset
          type: integer
          nullable: true
        limit:
          title: Limit
          type: integer
          nullable: true
        has_more:
          title: Has More
          type: boolean
          nullable: true
        after:
          title: After
          type: string
          nullable: true
        before:
          title: Before
          type: string
          nullable: true
      type: object
      title: PaginationMeta
      description: |-
        Pagination metadata for list responses.

        Supports both legacy offset-based and cursor-based pagination.
        Cursor fields (``has_more``, ``after``, ``before``) are populated for
        cursor-paginated endpoints.  Legacy fields (``offset``, ``limit``) are
        populated when the caller uses the deprecated ``offset`` parameter.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````