Post Seal Blob
Endpoint
Section titled “Endpoint”POST /api/seal_blob/v1Try it
Section titled “Try it”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).
Parameters
Section titled “Parameters”No parameters.
Request body
Section titled “Request body”Media: application/json
Schema
{ "type": "object", "required": [ "pk_hex", "tx_hex" ], "properties": { "pk_hex": { "type": "string", "description": "Public key in hex format" }, "tx_hex": { "type": "string", "description": "Transaction/plaintext in hex format" } }}Responses
Section titled “Responses”200 — Blob encrypted successfully
Section titled “200 — Blob encrypted successfully”Media: application/json
Schema
{ "type": "object", "required": [ "ciphertext_hex" ], "properties": { "ciphertext_hex": { "type": "string", "description": "Encrypted blob in hex format" } }}400 — Bad request - invalid hex or key format
Section titled “400 — Bad request - invalid hex or key format”500 — Internal server error
Section titled “500 — Internal server error”Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.