openapi: 3.2.0 info: title: Livepeer CLI Local HTTP Ethereum API description: 'Local control-plane HTTP endpoints exposed by the Livepeer node. The CLI HTTP API provides programmatic access to node management functions including status monitoring, staking operations, orchestrator configuration, and broadcast settings. **Default Ports:** - Gateway: http://localhost:5935 - Orchestrator: http://localhost:7935 ' version: 1.0.0 contact: name: Livepeer Documentation url: https://docs.livepeer.org servers: - url: http://localhost:5935 description: Gateway CLI API (default) - url: http://localhost:7935 description: Orchestrator CLI API tags: - name: Ethereum description: Ethereum operations and token transfers paths: /transferTokens: post: tags: - Ethereum summary: Transfer LPT tokens description: Transfer LPT to another address operationId: transferTokens requestBody: required: true content: application/json: schema: type: object required: - to - amount properties: to: type: string description: Recipient address example: '0x1234567890abcdef1234567890abcdef12345678' amount: type: string description: Amount of LPT to transfer (in wei) example: '1000000000000000000' responses: '200': description: Transfer successful content: application/json: schema: $ref: '#/components/schemas/TransactionResponse' /signMessage: post: tags: - Ethereum summary: Sign message description: Sign message with node's private key operationId: signMessage requestBody: required: true content: application/json: schema: type: object required: - message properties: message: type: string description: Message to sign example: Hello Livepeer responses: '200': description: Message signed successfully content: application/json: schema: type: object properties: signature: type: string description: Hex-encoded signature example: 0x... components: schemas: TransactionResponse: type: object properties: txHash: type: string description: Transaction hash example: 0x... status: type: string description: Transaction status example: success