Tezos Rewards API

The Rewards API from Tezos — 8 operation(s) for rewards.

Operations 8

GET /v1/rewards/bakers/{address}/count Get baker cycle rewards count #
GET /v1/rewards/bakers/{address} Get baker cycle rewards #
GET /v1/rewards/delegators/{address}/count Get delegator cycle rewards count #
GET /v1/rewards/delegators/{address} Get delegator cycle rewards #
GET /v1/rewards/stakers/{address}/count Get staker cycle rewards count #
GET /v1/rewards/stakers/{address} Get staker cycle rewards #
GET /v1/rewards/split/{baker}/{cycle} Get reward split #
GET /v1/rewards/split/{baker}/{cycle}/{member} Get reward split member #

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/tezos-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

tezos-rewards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TzKT Accounts Rewards API
  description: "# Introduction\n\nTzKT is the most widely used tool in Tezos that provides you with convenient and flexible access to the Tezos blockchain data, processed and indexed by its own indexer. \nYou can fetch all historical data via REST API, or subscribe for real-time data via WebSocket API. TzKT was built by the joint efforts of the entire Tezos community \nto help developers build more services and dapps on top of Tezos.\n\nTzKT Indexer and API are [open-source](https://github.com/baking-bad/tzkt), so don't be afraid to depend on the third-party service,\nbecause you can always clone, build and run it yourself to have full control over all the components.\n\nFeel free to contact us if you have any questions or feature requests.\nYour feedback is much appreciated!\n\n- Discord: https://discord.gg/aG8XKuwsQd\n- Telegram: https://t.me/baking_bad_chat\n- X: https://x.com/TezosBakingBad\n- Email: hello@bakingbad.dev\n\nAnd don't forget to star TzKT [on GitHub](https://github.com/baking-bad/tzkt) if you like it \U0001F60A\n\n# Get Started\n\nThere are two API services provided for public use:\n- **Free TzKT API** with free anonymous access;\n- **TzKT Pro** with paid subscriptions with increased rate limits, off-chain data, extended support and business-level SLA.\n\nYou can find more details about differences between available tiers [here](https://tzkt.io/api).\n\n## Free TzKT API\n\nFree-tier TzKT API is the best way to get started and explore available Tezos data and API functionality.\nIt doesn't require authorization and is free for everyone and for both commercial and non-commercial use.\n\n> #### Note: attribution required\nIf you use free-tier TzKT API, you **must** mention it on your website or application by placing the label\n\"Powered by TzKT API\", or \"Built with TzKT API\", or \"Data provided by TzKT API\" with a direct link to [tzkt.io](https://tzkt.io).\n\nIt's available for the following Tezos networks with the following base URLs:\n\n- Mainnet: `https://api.tzkt.io/` or `https://api.mainnet.tzkt.io/` ([view docs](https://api.tzkt.io))\n- Ghostnet: `https://api.ghostnet.tzkt.io/` ([view docs](https://api.ghostnet.tzkt.io))\n- Shadownet: `https://api.shadownet.tzkt.io/` ([view docs](https://api.shadownet.tzkt.io))\n- Seoulnet: `https://api.seoulnet.tzkt.io/` ([view docs](https://api.seoulnet.tzkt.io))\n- Tallinnnet: `https://api.tallinnnet.tzkt.io/` ([view docs](https://api.tallinnnet.tzkt.io))\n\n### Sending Requests\n\nTo send a request to Free TzKT API you need literally nothing. Just take the base URL of the particular network\n(for example, Tezos mainnet: `https://api.tzkt.io`) and append the path of the particular endpoint\n(for example, chain's head: `/v1/head`), that's pretty much it: \n\n```bash\ncurl https://api.tzkt.io/v1/head\n```\n\nRead through this documentation to explore available endpoints, query parameters\n(note, if you click on a query parameter, you will see available modes, such as `.eq`, `.in`, etc.)\nand response models. If you have any questions, do not hesitate to ask for support, Tezos community has always been very friendly! \U0001F609\n\n### Rate Limits\n\nPlease, refer to https://tzkt.io/api to check relevant rate limits.\n\nIf you exceed the limit, the API will respond with `HTTP 429` status code.\n\n## TzKT Pro\n\nTzKT Pro is intended for professional use, for those who seek for extended capabilities, performance, reliability and business-level SLA.\nTzKT Pro service is provided via paid subscriptions. Please, refer to [Pricing Plans](https://tzkt.io/api) to check available tiers.\n\nIt's available for the following Tezos networks with the following base URLs:\n\n- Mainnet: `https://pro.tzkt.io/` ([view docs](https://api.tzkt.io))\n- Testnets: *let us know if you need TzKT Pro for testnets*\n\n### Authorization\n\nTo access TzKT Pro you will need to authorize requests with your personal API key, that you will receive on your email after purchasing a subscription.\nThis can be done by adding the query string parameter `?apikey={your_key}` or by adding the HTTP header `apikey: {your_key}`.\n\nNote that you can have multiple API keys within a single subscription.\n\nKeep your API keys private, do not publish it anywhere and do not hardcode it, especially in public repositories.\nIf your key was compromised, just let us know and we will issue a new one.\n\nAlso note that passing the API key via HTTP headers is more secure, because in HTTPS headers are encrypted,\nbut query string is not, so the key can be unintentionally exposed to third parties.\n\n### Sending Requests\n\nSending a request with the API key passed as a query string parameter:\n\n```bash\ncurl https://pro.tzkt.io/v1/head?apikey={your_key}\n```\n\nSending a request with the API key passed via an HTTP header:\n\n```bash\ncurl https://pro.tzkt.io/v1/head \\\n    -H 'apikey: {your_key}'\n```\n\n### Rate Limits\n\nPlease, refer to https://tzkt.io/api to check relevant rate limits for different pricing plans.\n\nAlso, TzKT Pro provides you with the additional HTTP headers to show the allowed limits, number of available requests\nand the time remaining (in seconds) until the quota is reset. Here's an example:\n\n```\nRateLimit-Limit: 50\nRateLimit-Remaining: 49\nRateLimit-Reset: 1\n```\n\nIt also sends general information about your rate limits per second and per day:\n\n```\nX-RateLimit-Limit-Second: 50\nX-RateLimit-Remaining-Second: 49\nX-RateLimit-Limit-Day: 3000000\nX-RateLimit-Remaining-Day: 2994953\n```\n\nIf you exceed the limit, the API will respond with `HTTP 429` status code.\n"
  contact:
    name: Baking Bad Team
    url: https://bakingbad.dev
    email: hello@bakingbad.dev
  version: 1.17.1
  x-logo:
    url: https://tzkt.io/logo.png
    href: https://tzkt.io/
servers:
- url: https://api.tzkt.io
tags:
- name: Rewards
paths:
  /v1/rewards/bakers/{address}/count:
    get:
      tags:
      - Rewards
      summary: Get baker cycle rewards count
      description: Returns total number of cycles where the baker was active
      operationId: Rewards_GetBakerRewardsCount
      parameters:
      - name: address
        in: path
        required: true
        description: Baker address
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: integer
                format: int32
  /v1/rewards/bakers/{address}:
    get:
      tags:
      - Rewards
      summary: Get baker cycle rewards
      description: Returns a list of baker rewards for every cycle, including future cycles.
      operationId: Rewards_GetBakerRewards
      parameters:
      - name: address
        in: path
        required: true
        description: Baker address.
        schema:
          type: string
        x-position: 1
      - name: cycle
        in: query
        description: Filter by cycle.
        schema:
          oneOf:
          - $ref: '#/components/schemas/Int32Parameter'
        x-position: 2
        x-tzkt-extension: query-parameter
      - name: sort
        in: query
        description: "Sorts items (asc or desc) by the specified field.\nYou can see what fields can be used for sorting in the response description, below.  \nClick on the parameter to expand more details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/SortParameter'
        x-position: 3
        x-tzkt-extension: query-parameter
      - name: offset
        in: query
        description: "Specifies which or how many items should be skipped.  \nClick on the parameter to expand more details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/OffsetParameter'
        x-position: 4
        x-tzkt-extension: query-parameter
      - name: limit
        in: query
        description: Maximum number of items to return.
        schema:
          type: integer
          format: int32
          maximum: 10000.0
          minimum: 0.0
        x-position: 5
      - name: select
        in: query
        description: "Specify a comma-separated list of fields to include into response or leave it undefined to get default set of fields.\nThis parameter accepts values of the following format: `{field}{path?}{as alias?}`, so you can do deep selection\n(for example, `?select=balance,token.metadata.symbol as token,...`).  \nNote, if you select just one field, the response will be flatten into a simple array of values.  \nClick on the parameter to expand the details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/SelectionParameter'
        x-position: 6
        x-tzkt-extension: query-parameter
      - name: quote
        in: query
        description: Comma-separated list of ticker symbols to inject historical prices into response
        schema:
          default: None
          oneOf:
          - $ref: '#/components/schemas/Symbols'
        x-position: 7
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BakerRewards'
  /v1/rewards/delegators/{address}/count:
    get:
      tags:
      - Rewards
      summary: Get delegator cycle rewards count
      description: Returns total number of cycles where the delegator was delegated to an active baker
      operationId: Rewards_GetDelegatorRewardsCount
      parameters:
      - name: address
        in: path
        required: true
        description: Delegator address
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: integer
                format: int32
  /v1/rewards/delegators/{address}:
    get:
      tags:
      - Rewards
      summary: Get delegator cycle rewards
      description: Returns a list of delegator rewards for every cycle, including future cycles.
      operationId: Rewards_GetDelegatorRewards
      parameters:
      - name: address
        in: path
        required: true
        description: Delegator address.
        schema:
          type: string
        x-position: 1
      - name: cycle
        in: query
        description: Filter by cycle.
        schema:
          oneOf:
          - $ref: '#/components/schemas/Int32Parameter'
        x-position: 2
        x-tzkt-extension: query-parameter
      - name: sort
        in: query
        description: "Sorts items (asc or desc) by the specified field.\nYou can see what fields can be used for sorting in the response description, below.  \nClick on the parameter to expand more details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/SortParameter'
        x-position: 3
        x-tzkt-extension: query-parameter
      - name: offset
        in: query
        description: "Specifies which or how many items should be skipped.  \nClick on the parameter to expand more details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/OffsetParameter'
        x-position: 4
        x-tzkt-extension: query-parameter
      - name: limit
        in: query
        description: Maximum number of items to return.
        schema:
          type: integer
          format: int32
          maximum: 10000.0
          minimum: 0.0
        x-position: 5
      - name: select
        in: query
        description: "Specify a comma-separated list of fields to include into response or leave it undefined to get default set of fields.\nThis parameter accepts values of the following format: `{field}{path?}{as alias?}`, so you can do deep selection\n(for example, `?select=balance,token.metadata.symbol as token,...`).  \nNote, if you select just one field, the response will be flatten into a simple array of values.  \nClick on the parameter to expand the details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/SelectionParameter'
        x-position: 6
        x-tzkt-extension: query-parameter
      - name: quote
        in: query
        description: Comma-separated list of ticker symbols to inject historical prices into response
        schema:
          default: None
          oneOf:
          - $ref: '#/components/schemas/Symbols'
        x-position: 7
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DelegatorRewards'
  /v1/rewards/stakers/{address}/count:
    get:
      tags:
      - Rewards
      summary: Get staker cycle rewards count
      description: Returns total number of cycles where the staker was staking to an active baker
      operationId: Rewards_GetStakerRewardsCount
      parameters:
      - name: address
        in: path
        required: true
        description: Staker address
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: integer
                format: int32
  /v1/rewards/stakers/{address}:
    get:
      tags:
      - Rewards
      summary: Get staker cycle rewards
      description: Returns a list of staker rewards.
      operationId: Rewards_GetStakerRewards
      parameters:
      - name: address
        in: path
        required: true
        description: Staker address.
        schema:
          type: string
        x-position: 1
      - name: cycle
        in: query
        description: Filter by cycle.
        schema:
          oneOf:
          - $ref: '#/components/schemas/Int32Parameter'
        x-position: 2
        x-tzkt-extension: query-parameter
      - name: sort
        in: query
        description: "Sorts items (asc or desc) by the specified field.\nYou can see what fields can be used for sorting in the response description, below.  \nClick on the parameter to expand more details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/SortParameter'
        x-position: 3
        x-tzkt-extension: query-parameter
      - name: offset
        in: query
        description: "Specifies which or how many items should be skipped.  \nClick on the parameter to expand more details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/OffsetParameter'
        x-position: 4
        x-tzkt-extension: query-parameter
      - name: limit
        in: query
        description: Maximum number of items to return.
        schema:
          type: integer
          format: int32
          maximum: 10000.0
          minimum: 0.0
        x-position: 5
      - name: select
        in: query
        description: "Specify a comma-separated list of fields to include into response or leave it undefined to get default set of fields.\nThis parameter accepts values of the following format: `{field}{path?}{as alias?}`, so you can do deep selection\n(for example, `?select=balance,token.metadata.symbol as token,...`).  \nNote, if you select just one field, the response will be flatten into a simple array of values.  \nClick on the parameter to expand the details."
        schema:
          oneOf:
          - $ref: '#/components/schemas/SelectionParameter'
        x-position: 6
        x-tzkt-extension: query-parameter
      - name: quote
        in: query
        description: Comma-separated list of ticker symbols to inject historical prices into response
        schema:
          default: None
          oneOf:
          - $ref: '#/components/schemas/Symbols'
        x-position: 7
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StakerRewards'
  /v1/rewards/split/{baker}/{cycle}:
    get:
      tags:
      - Rewards
      summary: Get reward split
      description: 'Returns baker rewards for the specified cycle with all delegators and stakers (both snapshotted and actual ones).

        This endpoint helps to distribute delegation rewards between delegators in proportion to their delegated balances.'
      operationId: Rewards_GetRewardSplit
      parameters:
      - name: baker
        in: path
        required: true
        description: Baker address
        schema:
          type: string
        x-position: 1
      - name: cycle
        in: path
        required: true
        description: Rewards cycle
        schema:
          type: integer
          format: int32
        x-position: 2
      - name: offset
        in: query
        description: Specifies how many delegators/stakers in the reward split should be skipped
        schema:
          type: integer
          format: int32
          default: 0
        x-position: 3
      - name: limit
        in: query
        description: Maximum number of delegators/stakers to return
        schema:
          type: integer
          format: int32
          default: 100
          maximum: 10000.0
          minimum: 0.0
        x-position: 4
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RewardSplit'
  /v1/rewards/split/{baker}/{cycle}/{member}:
    get:
      tags:
      - Rewards
      summary: Get reward split member
      description: Returns delegator/staker from the reward split for the specified cycle.
      operationId: Rewards_GetRewardSplitMember
      parameters:
      - name: baker
        in: path
        required: true
        description: Baker address
        schema:
          type: string
        x-position: 1
      - name: cycle
        in: path
        required: true
        description: Reward split cycle
        schema:
          type: integer
          format: int32
        x-position: 2
      - name: member
        in: path
        required: true
        description: Member address
        schema:
          type: string
        x-position: 3
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SplitMember'
components:
  schemas:
    Alias:
      type: object
      additionalProperties: false
      properties:
        alias:
          type:
          - string
          - 'null'
          description: Account alias name (off-chain data).
        address:
          type: string
          description: Account address (public key hash).
    OffsetParameter:
      type: object
      additionalProperties: false
      properties:
        el:
          type:
          - integer
          - 'null'
          description: '**Elements** offset mode (optional, i.e. `offset.el=123` is the same as `offset=123`). \

            Skips specified number of elements.


            Example: `?offset=100`.'
          format: int32
        pg:
          type:
          - integer
          - 'null'
          description: '**Page** offset mode. \

            Skips `page * limit` elements. This is a classic pagination.


            Example: `?offset.pg=1`.'
          format: int32
        cr:
          type:
          - integer
          - 'null'
          description: '**Cursor** offset mode. \

            Skips all elements with the `cursor` before (including) the specified value. Cursor is a field used for sorting, e.g. `id`.

            Avoid using this offset mode with non-unique or non-sequential cursors such as `amount`, `balance`, etc.


            Example: `?offset.cr=45837`.'
          format: int64
      x-tzkt-extension: query-parameter
    SplitMember:
      type: object
      additionalProperties: false
      properties:
        address:
          type: string
          description: Address of the delegator
        delegatedBalance:
          type: integer
          description: 'Amount delegated to the baker at the snapshot time (micro tez).

            This amount doesn''t include staked amount.'
          format: int64
        stakedPseudotokens:
          type:
          - string
          - 'null'
          description: Amount of staked pseudotokens at the snapshot time, representing staker's share within the baker's `externalStakedBalance`.
        stakedBalance:
          type: integer
          description: 'Estimated amount staked to the baker at the snapshot time (micro tez).

            It''s computed on-the-fly as `externalStakedBalance * stakedPseudotokens / issuedPseudotokens`.'
          format: int64
        emptied:
          type: boolean
          description: 'Indicates whether the delegator is emptied (at the moment, not at the snapshot time).

            Emptied accounts (users with zero balance) should be re-allocated, so if you make payment to the emptied account you will pay allocation fee.'
    BakerRewards:
      type: object
      additionalProperties: false
      properties:
        cycle:
          type: integer
          description: "Cycle in which rewards were or will be earned.  \n**[sortable]**"
          format: int32
        ownDelegatedBalance:
          type: integer
          description: 'Amount delegated from the baker''s own balance (micro tez).

            This amount doesn''t include staked amount.'
          format: int64
        externalDelegatedBalance:
          type: integer
          description: 'Amount delegated from external delegators and "unstakers" (delegators who left the baker, but still had locked unstaked balance delegated to the baker) (micro tez).

            This amount doesn''t include external staked amount.'
          format: int64
        delegatorsCount:
          type: integer
          description: 'Number of delegators (those who were delegated to the baker).

            This doesn''t include "unstakers" (delegators who left the baker, but still had locked unstaked balance delegated to the baker).'
          format: int32
        ownStakedBalance:
          type: integer
          description: Amount staked from the baker's own balance (micro tez).
          format: int64
        externalStakedBalance:
          type: integer
          description: Amount staked from external stakers (micro tez).
          format: int64
        stakersCount:
          type: integer
          description: Number of external stakers (those who delegated to the baker and also staked some amount).
          format: int32
        issuedPseudotokens:
          type:
          - string
          - 'null'
          description: Amount of staking pseudotokens issued by/for external stakers.
        bakingPower:
          type: integer
          description: Baker's baking power
          format: int64
        totalBakingPower:
          type: integer
          description: Sum of baking power of all active bakers
          format: int64
        expectedBlocks:
          type: number
          description: Expected value of how many blocks baker should produce based on baker's active stake, selected stake and blocks per cycle.
          format: double
        futureBlocks:
          type: integer
          description: Number of blocks which baker is allowed to produce in this cycle based on future baking rights.
          format: int32
        futureBlockRewards:
          type: integer
          description: Estimated value of future block rewards.
          format: int64
        blocks:
          type: integer
          description: Number of successfully baked blocks (both proposed and re-proposed blocks).
          format: int32
        blockRewardsDelegated:
          type: integer
          description: 'Rewards, corresponding to delegated stake, received for baked blocks (both proposed and re-proposed blocks) on baker''s liquid balance

            (it is not frozen and can be spent immediately).'
          format: int64
        blockRewardsStakedOwn:
          type: integer
          description: 'Rewards, corresponding to baker''s own stake, received for baked blocks (both proposed and re-proposed blocks) on baker''s own staked balance

            (it is frozen and belongs to the baker).'
          format: int64
        blockRewardsStakedEdge:
          type: integer
          description: 'Rewards, corresponding to baker''s edge from external stake, received for baked blocks (both proposed and re-proposed blocks) on baker''s own staked balance

            (it is frozen and belongs to the baker).'
          format: int64
        blockRewardsStakedShared:
          type: integer
          description: 'Rewards, corresponding to baker''s external stake, received for baked blocks (both proposed and re-proposed blocks) on baker''s external staked balance

            (it is frozen and belongs to baker''s stakers).'
          format: int64
        missedBlocks:
          type: integer
          description: Number of missed opportunities to bake block.
          format: int32
        missedBlockRewards:
          type: integer
          description: Rewards which were not received due to missing blocks.
          format: int64
        expectedAttestations:
          type: number
          description: Expected value of how many slots baker should validate based on baker's active stake, selected stake and attestation slots per cycle.
          format: double
        futureAttestations:
          type: integer
          description: Number of slots which baker is allowed to validate in this cycle based on future attestation rights.
          format: int32
        futureAttestationRewards:
          type: integer
          description: Estimated value of future attestation rewards.
          format: int64
        attestations:
          type: integer
          description: Number of successfully attested slots.
          format: int32
        attestationRewardsDelegated:
          type: integer
          description: 'Rewards, corresponding to delegated stake, received for attested slots on baker''s liquid balance

            (it is not frozen and can be spent immediately).'
          format: int64
        attestationRewardsStakedOwn:
          type: integer
          description: 'Rewards, corresponding to baker''s own stake, received for attested slots on baker''s own staked balance

            (it is frozen and belongs to the baker).'
          format: int64
        attestationRewardsStakedEdge:
          type: integer
          description: 'Rewards, corresponding to baker''s edge from external stake, received for attested slots on baker''s own staked balance

            (it is frozen and belongs to the baker).'
          format: int64
        attestationRewardsStakedShared:
          type: integer
          description: 'Rewards, corresponding to baker''s external stake, received for attested slots on baker''s external staked balance

            (it is frozen and belongs to baker''s stakers).'
          format: int64
        missedAttestations:
          type: integer
          description: Number of not attested (missed) slots.
          format: int32
        missedAttestationRewards:
          type: integer
          description: Rewards which were not received due to missing attestations.
          format: int64
        expectedDalAttestations:
          type: integer
          description: Expected value of how many dal shards baker should attest based on baker's active stake, selected stake and total shards per cycle.
          format: int64
        futureDalAttestationRewards:
          type: integer
          description: Estimated value of future dal attestation rewards.
          format: int64
        dalAttestationRewardsDelegated:
          type: integer
          description: 'Rewards, corresponding to delegated stake, received for attested dal shards on baker''s liquid balance

            (it is not frozen and can be spent immediately).'
          format: int64
        dalAttestationRewardsStakedOwn:
          type: integer
          description: 'Rewards, corresponding to baker''s own stake, received for attested dal shards on baker''s own staked balance

            (it is frozen and belongs to the baker).'
          format: int64
        dalAttestationRewardsStakedEdge:
          type: integer
          description: 'Rewards, corresponding to baker''s edge from external stake, received for attested dal shards on baker''s own staked balance

            (it is frozen and belongs to the baker).'
          format: int64
        dalAttestationRewardsStakedShared:
          type: integer
          description: 'Rewards, corresponding to baker''s external stake, received for attested dal shards on baker''s external staked balance

            (it is frozen and belongs to baker''s stakers).'
          format: int64
        missedDalAttestationRewards:
          type: integer
          description: Rewards which were not received due to denunciation or not enough participation.
          format: int64
        blockFees:
          type: integer
          description: Operation fees which were harvested from successfully baked blocks.
          format: int64
        missedBlockFees:
          type: integer
          description: Operation fees which were not received due to missing blocks.
          format: int64
        doubleBakingRewards:
          type: integer
          description: Rewards for detecting double baking (accusing someone of producing two different blocks at the same level).
          format: int64
        doubleBakingLostStaked:
          type: integer
          description: Amount of baker's own staked balance lost due to double baking
          format: int64
        doubleBakingLostUnstaked:
          type: integer
          description: Amount of baker's own unstaked balance lost due to double baking
          format: int64
        doubleBakingLostExternalStaked:
          type: integer
          description: Amount of baker's external staked balance lost due to double baking
          format: int64
        doubleBakingLostExternalUnstaked:
          type: integer
          description: Amount of baker's external unstaked balance lost due to double baking
          format: int64
        doubleConsensusRewards:
          type: integer
          description: Rewards for detecting double (pre)attestation (accusing someone of validating two different blocks at the same level).
          format: int64
        doubleConsensusLostStaked:
          type: integer
          description: Amount of baker's own staked balance lost due to double (pre)attestation
          format: int64
        doubleConsensusLostUnstaked:
          type: integer
          description: Amount of baker's own unstaked balance lost due to double (pre)attestation
          format: int64
        doubleConsensusLostExternalStaked:
          type: integer
          description: Amount of baker's external staked balance lost due to double (pre)attestation
          format: int64
        doubleConsensusLostExternalUnstaked:
          type: integer
          description: Amount of baker's external unstaked balance lost due to double (pre)attestation
          format: int64
        vdfRevelationRewardsDelegated:
          type: integer
          description: 'Rewards, corresponding to delegated stake, for including vdf revelations, received on baker''s liquid balance

            (it is not frozen and can be spent immediately).'
          format: int64
        vdfRevelationRewardsStakedOwn:
          type: integer
          description: 'Rewards, corresponding to baker''s own stake, for including vdf revelations, received on baker''s own staked balance

            (it is frozen and belongs to the baker).'
          format: int64
        vdfRevelationRewardsStakedEdge:
          type: integer
          description: 'Rewards, corresponding to baker''s edge from external stake, for including vdf revelations, received on baker''s own staked balance

            (it is frozen and belongs to the baker).'
          format: int64
        vdfRevelationRewardsStakedShared:
          type: integer
          description: 'Rewards, corresponding to baker''s external stake, for including vdf revelations, received on baker''s external staked balance

            (it is frozen and belongs to baker''s stakers).'
          format: int64
        nonceRevelationRewardsDelegated:
          type: integer
          description: 'Rewards

# --- truncated at 32 KB (55 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/tezos/refs/heads/main/openapi/tezos-rewards-api-openapi.yml