Rocket Pool Rewards API

The Rewards API from Rocket Pool — 4 operation(s) for rewards.

Operations 4

GET /rewards/intervals List Rewards Intervals #
GET /rewards/intervals/{index} Get Rewards Interval Detail #
GET /rewards/status View Available Rewards And Node Credits #
POST /rewards/claim-all Claim All Rewards And Node Credits #

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/rocket-pool-rewards-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

rocket-pool-rewards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rocket Pool Rewards API
  version: '1.0'
  description: 'Operations tagged Rewards across 2 of this provider''s published API definitions: rocket-pool-protocol-openapi.yml, rocket-pool-smart-node-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://protocol.rocketpool.example/v1
  description: Logical base path — actual access is via Ethereum smart contracts
- url: http://localhost:8080/api
  description: Local Smart Node daemon (loopback)
tags:
- name: Rewards
paths:
  /rewards/intervals:
    get:
      tags:
      - Rewards
      summary: List Rewards Intervals
      operationId: listRewardsIntervals
      responses:
        '200':
          description: Past and current rewards intervals
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RewardsInterval'
    servers:
    - url: https://protocol.rocketpool.example/v1
      description: Logical base path — actual access is via Ethereum smart contracts
  /rewards/intervals/{index}:
    get:
      tags:
      - Rewards
      summary: Get Rewards Interval Detail
      operationId: getRewardsInterval
      parameters:
      - name: index
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Rewards interval Merkle root and totals
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RewardsInterval'
    servers:
    - url: https://protocol.rocketpool.example/v1
      description: Logical base path — actual access is via Ethereum smart contracts
  /rewards/status:
    get:
      tags:
      - Rewards
      summary: View Available Rewards And Node Credits
      operationId: getRewardsStatus
      responses:
        '200':
          description: Rewards status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RewardsStatus'
    servers:
    - url: http://localhost:8080/api
      description: Local Smart Node daemon (loopback)
  /rewards/claim-all:
    post:
      tags:
      - Rewards
      summary: Claim All Rewards And Node Credits
      operationId: claimAllRewards
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClaimAllRequest'
      responses:
        '200':
          description: Claim submitted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionResponse'
    servers:
    - url: http://localhost:8080/api
      description: Local Smart Node daemon (loopback)
components:
  schemas:
    EthAmount:
      type: string
      description: Amount in wei
    RewardsInterval:
      type: object
      properties:
        index:
          type: integer
        merkleRoot:
          type: string
        startTime:
          type: string
          format: date-time
        endTime:
          type: string
          format: date-time
        nodeRpl:
          $ref: '#/components/schemas/EthAmount'
        odaoRpl:
          $ref: '#/components/schemas/EthAmount'
        pdaoRpl:
          $ref: '#/components/schemas/EthAmount'
        smoothingPoolEth:
          $ref: '#/components/schemas/EthAmount'
    ClaimAllRequest:
      type: object
      properties:
        intervals:
          type: array
          items:
            type: integer
        stakeAmount:
          $ref: '#/components/schemas/EthAmount_2'
    EthAmount_2:
      type: string
      description: Amount expressed in wei (1 ETH = 10^18 wei)
      example: '32000000000000000000'
    RewardsStatus:
      type: object
      properties:
        currentInterval:
          type: integer
        intervalsToClaim:
          type: array
          items:
            type: integer
        unclaimedRpl:
          $ref: '#/components/schemas/EthAmount_2'
        unclaimedEth:
          $ref: '#/components/schemas/EthAmount_2'
        unclaimedSmoothingPool:
          $ref: '#/components/schemas/EthAmount_2'
    TransactionResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - success
          - error
        txHash:
          $ref: '#/components/schemas/TransactionHash'
        gasInfo:
          type: object
          properties:
            estGasLimit:
              type: integer
            safeGasLimit:
              type: integer
        error:
          type: string
    TransactionHash:
      type: string
      pattern: ^0x[a-fA-F0-9]{64}$
x-refined-from:
- rocket-pool-protocol-openapi.yml
- rocket-pool-smart-node-openapi.yml