Livepeer Staking API

Token bonding and delegation operations

Operations 3

POST /bond Bond tokens to an orchestrator #
POST /unbond Unbond tokens #
POST /rebond Rebond tokens #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/livepeer-staking-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

livepeer-staking-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Livepeer CLI Local HTTP Staking 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: Staking
  description: Token bonding and delegation operations
paths:
  /bond:
    post:
      tags:
      - Staking
      summary: Bond tokens to an orchestrator
      description: Delegate LPT tokens to an orchestrator
      operationId: bondTokens
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - amount
              - to
              properties:
                amount:
                  type: string
                  description: Amount of LPT to bond (in wei)
                  example: '1000000000000000000'
                to:
                  type: string
                  description: Orchestrator address to bond to
                  example: '0x1234567890abcdef1234567890abcdef12345678'
      responses:
        '200':
          description: Bond successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionResponse'
  /unbond:
    post:
      tags:
      - Staking
      summary: Unbond tokens
      description: Remove delegated tokens (starts unbonding period)
      operationId: unbondTokens
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - amount
              properties:
                amount:
                  type: string
                  description: Amount of LPT to unbond (in wei)
                  example: '1000000000000000000'
      responses:
        '200':
          description: Unbond initiated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionResponse'
  /rebond:
    post:
      tags:
      - Staking
      summary: Rebond tokens
      description: Rebond tokens in unbonding state
      operationId: rebondTokens
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                unbondingLockId:
                  type: integer
                  description: ID of the unbonding lock to rebond
                  example: 0
      responses:
        '200':
          description: Rebond successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionResponse'
components:
  schemas:
    TransactionResponse:
      type: object
      properties:
        txHash:
          type: string
          description: Transaction hash
          example: 0x...
        status:
          type: string
          description: Transaction status
          example: success