⚠️Blast API (blastapi.io) ends Oct 31. Migrate to Dwellir and skip Alchemy's expensive compute units.
Switch Today →
Skip to main content

rpc_methods – Mythos JSON-RPC Method

Lists every RPC namespace and method version exposed by the node. Call this first when validating feature availability across Mythos archive and full nodes.

Parameters

This method takes no parameters.

Returns

FieldTypeDescription
methodsarrayList of method names (e.g. chain_getBlock, state_getStorage).
versionnumberRPC API version number.

Request Example

{
"jsonrpc": "2.0",
"method": "rpc_methods",
"params": [],
"id": 1
}

Example (curl)

curl https://api-mythos-archive.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "rpc_methods",
"params": [],
"id": 1
}'