mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 14:03:06 +00:00
36 lines
738 B
YAML
36 lines
738 B
YAML
openapi: 3.1.0
|
|
info:
|
|
title: Waku REST API - Debug
|
|
version: 1.0.0
|
|
|
|
paths:
|
|
/debug/v1/info:
|
|
get:
|
|
summary: Get node info
|
|
description: Retrieve information about a Waku v2 node.
|
|
tags:
|
|
- Debug
|
|
responses:
|
|
'200':
|
|
description: Information about a Waku v2 node.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/WakuInfo'
|
|
'5XX':
|
|
description: Unexpected error.
|
|
|
|
components:
|
|
schemas:
|
|
WakuInfo:
|
|
type: object
|
|
properties:
|
|
listenAddresses:
|
|
type: array
|
|
items:
|
|
type: string
|
|
enrUri:
|
|
type: string
|
|
required:
|
|
- listenAddresses
|