The HTTP REST API consists of a set of methods operating on the Waku Node remotely over HTTP.
This API is divided in different namespaces which group a set of resources:
Namespace | Description |
---|---|
/debug |
Information about a Waku v2 node. |
/relay |
Control of the relaying of messages. See 11/WAKU2-RELAY RFC |
/store |
Retrieve the message history. See 13/WAKU2-STORE RFC |
/filter |
Control of the content filtering. See 12/WAKU2-FILTER RFC |
/admin |
Privileged access to the internal operations of the node. |
/private |
Provides functionality to encrypt/decrypt WakuMessage payloads using either symmetric or asymmetric cryptography. This allows backwards compatibility with Waku v1 nodes. |
The HTTP REST API has been designed following the OpenAPI 3.0.3 standard specification format. The OpenAPI specification files can be found in the Waku Node REST API Reference repository.
You can also use hosted OpenAPI UI to explore and execute the calls locally.
Check the OpenAPI Tools site for the right tool for you (e.g. REST API client generator)
A particular OpenAPI spec can be easily imported into Postman
- Open Postman.
- Click on File -> Import...
- Load the openapi.yaml of interest, stored in your computer.
- Then, requests can be made from within the 'Collections' section.
curl http://localhost:8645/debug/v1/info -s | jq
Find details here