# Get Node

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/msp/nodes/{node_id}/:
    get:
      summary: Get Node
      deprecated: false
      description: ''
      tags:
        - MSP Guide/API Reference/Node
      parameters:
        - name: node_id
          in: path
          description: ''
          required: true
          example: '{{node_id}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                  uid:
                    type: string
                  name:
                    type: string
                  is_parent_node:
                    type: boolean
                x-apidog-orders:
                  - id
                  - uid
                  - name
                  - is_parent_node
              example:
                id: 72
                uid: cb8b20f7-09dd-4eef-8f22-387027a2b0bd
                name: North America
                is_parent_node: false
          headers: {}
          x-apidog-name: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
              example:
                error:
                  - >-
                    There was an issue processing your request, please try
                    again.
          headers: {}
          x-apidog-name: Basic Error
        '403':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                required:
                  - detail
                x-apidog-orders:
                  - detail
              example:
                detail: Authentication credentials were not provided.
          headers: {}
          x-apidog-name: Unauthenticated
      security: []
      x-apidog-folder: MSP Guide/API Reference/Node
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1187388/apis/api-28136238-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security:
  - bearer: []

```
