RPCs - OpenAPI reference#
OpenAPI is a specification format for REST APIs. This format is supported by several tools, such as Swagger UI which allows you to browse a specification and perform API calls from your browser. Several code generators also exist to generate API libraries for various programming languages.
Octez Node#
The REST API served by the Octez node on the RPC port is described by the union of several OpenAPI specifications:
rpc-openapi(-rc).json
, containing the protocol-independent (or “shell”) RPCs in the last (candidate) releaserpc-openapi-dev.json
, containing the protocol-independent (or “shell”) RPCs in the current development version (branchmaster
)For each protocol in use:
$PROTOCOL-openapi.json
(served under the prefix:/chains/<chain-id>/blocks/<block-id>
)$PROTOCOL-mempool-openapi.json
(served under the prefix:/chains/<chain-id>/mempool
)
For instance, for an RPC listed as GET /filter
in $PROTOCOL-mempool-openapi.json
, its real endpoint is GET /chains/<chain-id>/mempool/filter
.
These OpenAPI specifications, detailed below, can be generated by running the Octez node as shown in section How to Generate. For convenience, the files generated from the most recent release(s) are provided in this page, annotated each time with the corresponding release (in parentheses).
Note
There exists an alternative reference for the node RPCs, presented in more static pages (e.g. Paris RPCs - Reference for the active protocol). However, the static referece omits some RPCs, such as the ones related to the mempool.
Warning
The links below to the different OpenAPI specifications are opened using the Swagger UI integrated in GitLab. This UI can be used for browsing the OpenAPIs (no need to install Swagger UI for that). However, the interactive use suggested in this UI does not currently work because:
the UI does not allow one to specify a server (which should correspond to a runnning Tezos node), and
browsers may block some of the generated requests or responses for security issues.
Shell RPCs#
The node provides some RPCs which are independent of the protocol. Their OpenAPI specification can be found at:
docs/api/rpc-openapi.json (version 20.3)
docs/api/rpc-openapi-rc.json (version 21.0~rc3)
docs/api/rpc-openapi-dev.json (version master)
Paris RPCs#
The OpenAPI specifications for RPCs which are specific to the ParisC (PtParisC
)
protocol can be found at:
docs/api/paris-openapi.json (version 20.3)
The OpenAPI specifications for RPCs which are related to the mempool and specific to the Paris protocol can be found at:
docs/api/paris-mempool-openapi.json (version 20.3)
Qena RPCs#
The OpenAPI specifications for RPCs which are specific to the Qena (PtQenaB1
)
protocol proposal can be found at:
docs/api/qena-openapi.json (version 21.0~rc3)
The OpenAPI specifications for RPCs which are related to the mempool and specific to the Qena protocol proposal can be found at:
docs/api/qena-mempool-openapi.json (version 21.0~rc3)
Alpha RPCs#
The OpenAPI specifications for RPCs which are specific to the Alpha protocol can be found at:
docs/api/alpha-openapi.json (version master)
The OpenAPI specifications for RPCs which are related to the mempool and specific to the Alpha protocol can be found at:
docs/api/alpha-mempool-openapi.json (version master)
Smart Rollup Node#
The smart rollup node exposes different RPCs depending on the underlying L1
protocol in use. Their specification is given in the sections below.
(The exact versions of the rollup node for which these files are produced can be
seen in the field .info.version
within each file.)
Paris RPCs#
The OpenAPI specifications for the RPCs of the smart rollup node for the Paris
(PtParisB
) protocol can be found at:
docs/api/paris-smart-rollup-node-openapi.json (version 20.3)
Qena RPCs#
The OpenAPI specifications for the RPCs of the smart rollup node for the Qena
(PtQenaB1
) protocol proposal can be found at:
docs/api/qena-smart-rollup-node-openapi.json (version 21.0~rc1)
Alpha RPCs#
The OpenAPI specifications for the RPCs of the smart rollup node for the Alpha protocol can be found at:
docs/api/alpha-smart-rollup-node-openapi.json (version master)
DAL Node#
The DAL node also provides RPCs. Their OpenAPI specification can be found at:
docs/api/dal-node-openapi.json (version 20.3)
docs/api/dal-node-openapi-rc.json (version 21.0~rc3)
docs/api/dal-node-openapi-dev.json (version master)
How to Generate#
To generate the *-dev.json
and alpha-*.json
files above from the current sources in your Octez repository, run the src/bin_openapi/generate.sh
script
from the root of the Octez repository.
Note that the generation script requires the Octez executables to be built, so you have to first run make
from the repository root.
You may instead run this script via make -C docs openapi
, which will run the generation script and check if the files above are up-to-date with respect to their versions under Git (modulo the version
fields inside).
If there are any other differences, you may want to create an MR to update these JSON files under docs/api/
.
The generation script will start a sandbox node, activate the protocol, get the RPC specifications from this node and convert them to OpenAPI specifications.
To generate the OpenAPI specification for the RPCs provided by a specific protocol instead of Alpha, update the following variables in src/bin_openapi/generate.sh:
`sh
protocol_hash=ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK
protocol_parameters=src/proto_alpha/parameters/sandbox-parameters.json
protocol_name=alpha
`
For protocol_hash
, use the value defined in TEZOS_PROTOCOL
.
How to Test#
You can test OpenAPI specifications using Swagger Editor
to check for syntax issues (just copy-paste rpc-openapi.json
into it or open
it from menu File > Import file
).
You can run Swagger UI to get an interface
to browse the API (replace xxxxxx
with the directory where rpc-openapi.json
is,
and rpc-openapi.json
by the file you want to browse):
docker pull swaggerapi/swagger-ui
docker run -p 8080:8080 -e SWAGGER_JSON=/mnt/rpc-openapi.json -v xxxxxx:/mnt swaggerapi/swagger-ui
Then open it in your browser.