# NodeLookup

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    NodeLookup:
      type: object
      description: The result of a network address discovery for a Lightning node.
      properties:
        addresses:
          type: array
          items:
            type: string
            examples:
              - 1.2.3.4:9735
          description: >-
            List of discovered public network addresses (IPv4, IPv6, or Tor) for
            the node.
      required:
        - addresses
      x-apidog-orders:
        - addresses
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://tunnelsats.com
    description: Prod Env
security: []

```