Skip to content

Post RPC Http

POST /api/v1/rpc/http

This endpoint is not available in the interactive playground (the playground is read-only / GET-only). Use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).

No parameters.

Media: application/json

Schema
{
"type": "object",
"required": [
"target",
"request"
],
"properties": {
"request": {
"type": "object",
"required": [
"jsonrpc",
"id",
"method"
],
"properties": {
"id": {},
"jsonrpc": {
"type": "string"
},
"method": {
"type": "string"
},
"params": {
"nullable": true
}
}
},
"target": {
"type": "string",
"enum": [
"finney_lite",
"finney_archive"
]
}
}
}

Media: application/json

Schema
{
"type": "object",
"required": [
"target",
"response"
],
"properties": {
"response": {
"type": "object",
"required": [
"jsonrpc",
"id"
],
"properties": {
"error": {
"nullable": true
},
"id": {},
"jsonrpc": {
"type": "string"
},
"result": {
"nullable": true
}
}
},
"target": {
"type": "string",
"enum": [
"finney_lite",
"finney_archive"
]
}
}
}

All Taostats API requests require an Authorization header containing your API key. See Getting Started.