Skip to content

Post Api V1 Rpc Http

POST /api/v1/rpc/http

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"
]
}
}
}

Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).

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