Operations

Get operations by hash

get

Returns a list of operations with the specified hash.
NOTE: if you know in advance what operation type you want to get (e.g. transactions), prefer using /v1/operations/{type}/{hash} (e.g. /v1/operations/transactions/{hash}) instead, because it's much more efficient.

Path parameters
hashstringRequired

Operation hash

Query parameters
michelineone ofOptional

Format of the parameters, storage and diffs: 0 - JSON, 1 - JSON string, 2 - raw micheline, 3 - raw micheline string

Default: Json
string ยท enumOptionalPossible values:
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/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text"
  }
]

Get operations by hash and counter

get

Returns a list of operations with the specified hash and counter.
NOTE: if you know in advance what operation type you want to get (e.g. transactions), prefer using /v1/operations/{type}/{hash}/{counter} (e.g. /v1/operations/transactions/{hash}/{counter}) instead, because it's much more efficient.

Path parameters
hashstringRequired

Operation hash

counterinteger ยท int32Required

Operation counter

Query parameters
michelineone ofOptional

Format of the parameters, storage and diffs: 0 - JSON, 1 - JSON string, 2 - raw micheline, 3 - raw micheline string

Default: Json
string ยท enumOptionalPossible values:
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/{hash}/{counter} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text"
  }
]

Get operations by hash, counter and nonce

get

Returns an internal operations with the specified hash, counter and nonce.
NOTE: if you know in advance what operation type you want to get (e.g. transactions), prefer using /v1/operations/{type}/{hash}/{counter}/{nonce} (e.g. /v1/operations/transactions/{hash}/{counter}/{nonce}) instead, because it's much more efficient.

Path parameters
hashstringRequired

Operation hash

counterinteger ยท int32Required

Operation counter

nonceinteger ยท int32Required

Operation nonce (internal)

Query parameters
michelineone ofOptional

Format of the parameters, storage and diffs: 0 - JSON, 1 - JSON string, 2 - raw micheline, 3 - raw micheline string

Default: Json
string ยท enumOptionalPossible values:
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/{hash}/{counter}/{nonce} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text"
  }
]