Baking

Get baking

get

Returns a list of baking operations (synthetic type).

Query parameters
bakerone of | nullableOptional

[DEPRECATED]

anyofone of | nullableOptional

Filters by any of the specified fields. Example: anyof.proposer.producer=tz1....

proposerone of | nullableOptional

Filters by block proposer. Allowed fields for .eqx mode: none.

producerone of | nullableOptional

Filters by block producer. Allowed fields for .eqx mode: none.

levelone of | nullableOptional

Filters baking operations by level.

timestampone of | nullableOptional

Filters baking operations by timestamp.

selectone of | nullableOptional

Specify comma-separated list of fields to include into response or leave it undefined to return full object. If you select single field, response will be an array of values in both .fields and .values modes.

sortone of | nullableOptional

Sorts baking operations by specified field. Supported fields: id (default), level.

offsetone of | nullableOptional

Specifies which or how many items should be skipped

limitinteger · int32 · max: 10000Optional

Maximum number of items to return

Default: 100
quoteone ofOptional

Comma-separated list of ticker symbols to inject historical prices into response

Default: None
string · enumOptionalPossible values:
Responses
200Success
application/json
get
GET /v1/operations/baking HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-14T03:24:15.257Z",
    "block": "text",
    "proposer": {
      "alias": "text",
      "address": "text"
    },
    "producer": {
      "alias": "text",
      "address": "text"
    },
    "payloadRound": 1,
    "blockRound": 1,
    "deposit": 1,
    "rewardLiquid": 1,
    "rewardStakedOwn": 1,
    "rewardStakedShared": 1,
    "bonusLiquid": 1,
    "bonusStakedOwn": 1,
    "bonusStakedShared": 1,
    "fees": 1,
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    },
    "reward": 1,
    "bonus": 1,
    "baker": {
      "alias": "text",
      "address": "text"
    },
    "priority": 1
  }
]

Get baking by id

get

Returns baking operation with specified id.

Path parameters
idinteger · int64Required

Operation id

Query parameters
quoteone ofOptional

Comma-separated list of ticker symbols to inject historical prices into response

Default: None
string · enumOptionalPossible values:
Responses
200Success
application/json
Responseall of
and
get
GET /v1/operations/baking/{id} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
{
  "type": "text",
  "id": 1,
  "level": 1,
  "timestamp": "2025-07-14T03:24:15.257Z",
  "block": "text",
  "proposer": {
    "alias": "text",
    "address": "text"
  },
  "producer": {
    "alias": "text",
    "address": "text"
  },
  "payloadRound": 1,
  "blockRound": 1,
  "deposit": 1,
  "rewardLiquid": 1,
  "rewardStakedOwn": 1,
  "rewardStakedShared": 1,
  "bonusLiquid": 1,
  "bonusStakedOwn": 1,
  "bonusStakedShared": 1,
  "fees": 1,
  "quote": {
    "btc": 1,
    "eur": 1,
    "usd": 1,
    "cny": 1,
    "jpy": 1,
    "krw": 1,
    "eth": 1,
    "gbp": 1
  },
  "reward": 1,
  "bonus": 1,
  "baker": {
    "alias": "text",
    "address": "text"
  },
  "priority": 1
}