openapi: 3.0.0 info: title: TzKT Accounts Operations API description: "# Introduction\r\n\r\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. \r\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 \r\nto help developers build more services and dapps on top of Tezos.\r\n\r\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,\r\nbecause you can always clone, build and run it yourself to have full control over all the components.\r\n\r\nFeel free to contact us if you have any questions or feature requests.\r\nYour feedback is much appreciated!\r\n\r\n- Discord: https://discord.gg/aG8XKuwsQd\r\n- Telegram: https://t.me/baking_bad_chat\r\n- X: https://x.com/TezosBakingBad\r\n- Email: hello@bakingbad.dev\r\n\r\nAnd don't forget to star TzKT [on GitHub](https://github.com/baking-bad/tzkt) if you like it \U0001F60A\r\n\r\n# Get Started\r\n\r\nThere are two API services provided for public use:\r\n- **Free TzKT API** with free anonymous access;\r\n- **TzKT Pro** with paid subscriptions with increased rate limits, off-chain data, extended support and business-level SLA.\r\n\r\nYou can find more details about differences between available tiers [here](https://tzkt.io/api).\r\n\r\n## Free TzKT API\r\n\r\nFree-tier TzKT API is the best way to get started and explore available Tezos data and API functionality.\r\nIt doesn't require authorization and is free for everyone and for both commercial and non-commercial use.\r\n\r\n> #### Note: attribution required\r\nIf you use free-tier TzKT API, you **must** mention it on your website or application by placing the label\r\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).\r\n\r\nIt's available for the following Tezos networks with the following base URLs:\r\n\r\n- Mainnet: `https://api.tzkt.io/` or `https://api.mainnet.tzkt.io/` ([view docs](https://api.tzkt.io))\r\n- Ghostnet: `https://api.ghostnet.tzkt.io/` ([view docs](https://api.ghostnet.tzkt.io))\r\n- Shadownet: `https://api.shadownet.tzkt.io/` ([view docs](https://api.shadownet.tzkt.io))\r\n- Seoulnet: `https://api.seoulnet.tzkt.io/` ([view docs](https://api.seoulnet.tzkt.io))\r\n- Tallinnnet: `https://api.tallinnnet.tzkt.io/` ([view docs](https://api.tallinnnet.tzkt.io))\r\n\r\n### Sending Requests\r\n\r\nTo send a request to Free TzKT API you need literally nothing. Just take the base URL of the particular network\r\n(for example, Tezos mainnet: `https://api.tzkt.io`) and append the path of the particular endpoint\r\n(for example, chain's head: `/v1/head`), that's pretty much it: \r\n\r\n```bash\r\ncurl https://api.tzkt.io/v1/head\r\n```\r\n\r\nRead through this documentation to explore available endpoints, query parameters\r\n(note, if you click on a query parameter, you will see available modes, such as `.eq`, `.in`, etc.)\r\nand response models. If you have any questions, do not hesitate to ask for support, Tezos community has always been very friendly! \U0001F609\r\n\r\n### Rate Limits\r\n\r\nPlease, refer to https://tzkt.io/api to check relevant rate limits.\r\n\r\nIf you exceed the limit, the API will respond with `HTTP 429` status code.\r\n\r\n## TzKT Pro\r\n\r\nTzKT Pro is intended for professional use, for those who seek for extended capabilities, performance, reliability and business-level SLA.\r\nTzKT Pro service is provided via paid subscriptions. Please, refer to [Pricing Plans](https://tzkt.io/api) to check available tiers.\r\n\r\nIt's available for the following Tezos networks with the following base URLs:\r\n\r\n- Mainnet: `https://pro.tzkt.io/` ([view docs](https://api.tzkt.io))\r\n- Testnets: *let us know if you need TzKT Pro for testnets*\r\n\r\n### Authorization\r\n\r\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.\r\nThis can be done by adding the query string parameter `?apikey={your_key}` or by adding the HTTP header `apikey: {your_key}`.\r\n\r\nNote that you can have multiple API keys within a single subscription.\r\n\r\nKeep your API keys private, do not publish it anywhere and do not hardcode it, especially in public repositories.\r\nIf your key was compromised, just let us know and we will issue a new one.\r\n\r\nAlso note that passing the API key via HTTP headers is more secure, because in HTTPS headers are encrypted,\r\nbut query string is not, so the key can be unintentionally exposed to third parties.\r\n\r\n### Sending Requests\r\n\r\nSending a request with the API key passed as a query string parameter:\r\n\r\n```bash\r\ncurl https://pro.tzkt.io/v1/head?apikey={your_key}\r\n```\r\n\r\nSending a request with the API key passed via an HTTP header:\r\n\r\n```bash\r\ncurl https://pro.tzkt.io/v1/head \\\r\n -H 'apikey: {your_key}'\r\n```\r\n\r\n### Rate Limits\r\n\r\nPlease, refer to https://tzkt.io/api to check relevant rate limits for different pricing plans.\r\n\r\nAlso, TzKT Pro provides you with the additional HTTP headers to show the allowed limits, number of available requests\r\nand the time remaining (in seconds) until the quota is reset. Here's an example:\r\n\r\n```\r\nRateLimit-Limit: 50\r\nRateLimit-Remaining: 49\r\nRateLimit-Reset: 1\r\n```\r\n\r\nIt also sends general information about your rate limits per second and per day:\r\n\r\n```\r\nX-RateLimit-Limit-Second: 50\r\nX-RateLimit-Remaining-Second: 49\r\nX-RateLimit-Limit-Day: 3000000\r\nX-RateLimit-Remaining-Day: 2994953\r\n```\r\n\r\nIf you exceed the limit, the API will respond with `HTTP 429` status code.\r\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: Operations paths: /v1/operations/{hash}: get: tags: - Operations summary: Get operations by hash description: "Returns a list of operations with the specified hash. \n**NOTE: if you know in advance what operation type you want to get (e.g. transactions), prefer using `/v1/operations/{type}/{hash}`\n(e.g. [/v1/operations/transactions/{hash}](#operation/Operations_GetTransactionByHash)) instead, because it's much more efficient.**" operationId: Operations_GetByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 2 - 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: 3 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/Operation' /v1/operations/{hash}/{counter}: get: tags: - Operations summary: Get operations by hash and counter description: "Returns a list of operations with the specified hash and counter. \n**NOTE: if you know in advance what operation type you want to get (e.g. transactions), prefer using `/v1/operations/{type}/{hash}/{counter}`\n(e.g. [/v1/operations/transactions/{hash}/{counter}](#operation/Operations_GetTransactionByHashCounter)) instead, because it's much more efficient.**" operationId: Operations_GetByHashCounter parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: counter in: path required: true description: Operation counter schema: type: integer format: int32 x-position: 2 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 3 - 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: 4 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/Operation' /v1/operations/{hash}/{counter}/{nonce}: get: tags: - Operations summary: Get operations by hash, counter and nonce description: "Returns an internal operations with the specified hash, counter and nonce. \n**NOTE: if you know in advance what operation type you want to get (e.g. transactions), prefer using `/v1/operations/{type}/{hash}/{counter}/{nonce}`\n(e.g. [/v1/operations/transactions/{hash}/{counter}/{nonce}](#operation/Operations_GetTransactionByHashCounterNonce)) instead, because it's much more efficient.**" operationId: Operations_GetByHashCounterNonce parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: counter in: path required: true description: Operation counter schema: type: integer format: int32 x-position: 2 - name: nonce in: path required: true description: Operation nonce (internal) schema: type: integer format: int32 x-position: 3 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 4 - 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: 5 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/Operation' /v1/operations/{hash}/status: get: tags: - Operations summary: Get operation status description: "Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn't exist. \n**NOTE: if you know in advance what operation type you want to check (e.g. transactions), prefer using `/v1/operations/{type}/{hash}/status`\n(e.g. [/v1/operations/transactions/{hash}/status](#operation/Operations_GetTransactionStatus)) instead, because it's much more efficient.**" operationId: Operations_GetStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/attestations: get: tags: - Operations summary: Get attestations description: Returns a list of attestation operations. operationId: Operations_GetAttestations parameters: - name: delegate in: query description: 'Filters attestations by delegate. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters attestations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters attestations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 5 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts attestations by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 6 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 7 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 8 - 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: 9 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/AttestationOperation' /v1/operations/attestations/{hash}: get: tags: - Operations summary: Get attestation by hash description: Returns an attestation operation with specified hash. operationId: Operations_GetAttestationByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/AttestationOperation' /v1/operations/attestations/count: get: tags: - Operations summary: Get attestations count description: Returns the total number of attestation operations. operationId: Operations_GetAttestationsCount parameters: - name: level in: query description: Filters attestations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters attestations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int64 /v1/operations/preattestations: get: tags: - Operations summary: Get preattestations description: Returns a list of preattestation operations. operationId: Operations_GetPreattestations parameters: - name: delegate in: query description: 'Filters by delegate. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 4 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 5 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 6 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 7 - 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: 8 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/PreattestationOperation' /v1/operations/preattestations/{hash}: get: tags: - Operations summary: Get preattestation by hash description: Returns an preattestation operation with specified hash. operationId: Operations_GetPreattestationByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/PreattestationOperation' /v1/operations/preattestations/count: get: tags: - Operations summary: Get preattestations count description: Returns the total number of preattestation operations. operationId: Operations_GetPreattestationsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/ballots: get: tags: - Operations summary: Get ballots description: Returns a list of ballot operations. operationId: Operations_GetBallots parameters: - name: delegate in: query description: 'Filters ballots by delegate. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: level in: query description: Filters ballots by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters ballots by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter - name: epoch in: query description: Filters ballots by voting epoch. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: period in: query description: Filters ballots by voting period. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: proposal in: query description: Filters ballots by proposal hash. schema: nullable: true oneOf: - $ref: '#/components/schemas/ProtocolParameter' x-position: 6 x-tzkt-extension: query-parameter - name: vote in: query description: Filters ballots by vote (`yay`, `nay`, `pass`). schema: nullable: true oneOf: - $ref: '#/components/schemas/VoteParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: yay,nay,pass - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 8 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts ballots by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 11 - 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: 12 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/BallotOperation' /v1/operations/ballots/{hash}: get: tags: - Operations summary: Get ballot by hash description: Returns a ballot operation with specified hash. operationId: Operations_GetBallotByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/BallotOperation' /v1/operations/ballots/count: get: tags: - Operations summary: Get ballots count description: Returns the total number of ballot operations. operationId: Operations_GetBallotsCount parameters: - name: level in: query description: Filters ballot operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters ballot operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/proposals: get: tags: - Operations summary: Get proposals description: Returns a list of proposal operations. operationId: Operations_GetProposals parameters: - name: delegate in: query description: 'Filters proposal operations by delegate. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: level in: query description: Filters proposal operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters proposal operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter - name: epoch in: query description: Filters proposal operations by voting epoch. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: period in: query description: Filters proposal operations by voting period. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: proposal in: query description: Filters proposal operations by proposal hash. schema: nullable: true oneOf: - $ref: '#/components/schemas/ProtocolParameter' x-position: 6 x-tzkt-extension: query-parameter - name: duplicated in: query description: Specify whether to include or exclude duplicates, which didn't actually upvote a proposal. schema: nullable: true oneOf: - $ref: '#/components/schemas/BoolParameter' x-position: 7 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 8 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts proposal operations by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 11 - 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: 12 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/ProposalOperation' /v1/operations/proposals/{hash}: get: tags: - Operations summary: Get proposal by hash description: Returns a proposal operation with specified hash. operationId: Operations_GetProposalByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/ProposalOperation' /v1/operations/proposals/count: get: tags: - Operations summary: Get proposals count description: Returns the total number of proposal operations. operationId: Operations_GetProposalsCount parameters: - name: level in: query description: Filters proposal operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters proposal operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/activations: get: tags: - Operations summary: Get activations description: Returns a list of activation operations. operationId: Operations_GetActivations parameters: - name: account in: query description: 'Filters activations by account. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: level in: query description: Filters activations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters activations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 4 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts activations by specified field. Supported fields: `id` (default), `level`, `balance`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 5 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 6 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 7 - 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: 8 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/ActivationOperation' /v1/operations/activations/{hash}: get: tags: - Operations summary: Get activation by hash description: Returns an activation operation with specified hash. operationId: Operations_GetActivationByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/ActivationOperation' /v1/operations/activations/count: get: tags: - Operations summary: Get activations count description: Returns the total number of activation operations. operationId: Operations_GetActivationsCount parameters: - name: level in: query description: Filters activations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters activations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/dal_entrapment_evidence: get: tags: - Operations summary: Get dal entrapment evidences description: Returns a list of dal entrapment evidence operations. operationId: Operations_GetDalEntrapmentEvidenceOps parameters: - name: anyof in: query description: 'Filters by any of the specified fields. Example: `anyof.accuser.offender=tz1...` will return operations where `accuser` OR `offender` is equal to the specified value. This parameter is useful when you need to retrieve all operations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: accuser,offender - name: accuser in: query description: 'Filters by accuser. Allowed fields for `.eqx` mode: `offender`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: offender in: query description: 'Filters by offender. Allowed fields for `.eqx` mode: `accuser`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 7 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `trapLevel`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 8 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 9 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 10 - 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: 11 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DalEntrapmentEvidenceOperation' /v1/operations/dal_entrapment_evidence/{hash}: get: tags: - Operations summary: Get dal entrapment evidence by hash description: Returns dal entrapment evidence operations with specified hash. operationId: Operations_GetDalEntrapmentEvidenceOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DalEntrapmentEvidenceOperation' /v1/operations/dal_entrapment_evidence/count: get: tags: - Operations summary: Get dal entrapment evidences count description: Returns the total number of dal entrapment evidence operations. operationId: Operations_GetDalEntrapmentEvidenceOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/double_baking: get: tags: - Operations summary: Get double baking description: Returns a list of double baking operations. operationId: Operations_GetDoubleBaking parameters: - name: anyof in: query description: 'Filters double baking operations by any of the specified fields. Example: `anyof.accuser.offender=tz1...` will return operations where `accuser` OR `offender` is equal to the specified value. This parameter is useful when you need to retrieve all operations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: accuser,offender - name: accuser in: query description: 'Filters double baking operations by accuser. Allowed fields for `.eqx` mode: `offender`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: offender in: query description: 'Filters double baking operations by offender. Allowed fields for `.eqx` mode: `accuser`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: Filters double baking operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters double baking operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 7 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts double baking operations by specified field. Supported fields: `id` (default), `level`, `accusedLevel`, `accuserRewards`, `offenderLostDeposits`, `offenderLostRewards`, `offenderLostFees`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 8 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 9 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 10 - 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: 11 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DoubleBakingOperation' /v1/operations/double_baking/{hash}: get: tags: - Operations summary: Get double baking by hash description: Returns a double baking operation with specified hash. operationId: Operations_GetDoubleBakingByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DoubleBakingOperation' /v1/operations/double_baking/count: get: tags: - Operations summary: Get double baking count description: Returns the total number of double baking operations. operationId: Operations_GetDoubleBakingCount parameters: - name: level in: query description: Filters double baking operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters double baking operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/double_consensus: get: tags: - Operations summary: Get double consensus description: Returns a list of double consensus operations. operationId: Operations_GetDoubleConsensus parameters: - name: anyof in: query description: 'Filter by any of the specified fields. Example: `anyof.accuser.offender=tz1...` will return operations where `accuser` OR `offender` is equal to the specified value. This parameter is useful when you need to retrieve all operations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: accuser,offender - name: accuser in: query description: 'Filter by accuser. Allowed fields for `.eqx` mode: `offender`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: offender in: query description: 'Filter by offender. Allowed fields for `.eqx` mode: `accuser`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: Filter by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: kind in: query description: Filter by misbehaviour kind (`double_attestation` or `double_preattestation`). schema: nullable: true oneOf: - $ref: '#/components/schemas/DoubleConsensusKindParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: double_attestation,double_preattestation - name: level in: query description: Filter by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filter by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 7 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 8 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sort by specified field. Supported fields: `id` (default), `level`, `accusedLevel`, `accuserRewards`, `offenderLostDeposits`, `offenderLostRewards`, `offenderLostFees`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 11 - 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: 12 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DoubleConsensusOperation' /v1/operations/double_consensus/{hash}: get: tags: - Operations summary: Get double consensus by hash description: Returns a double consensus operation with specified hash. operationId: Operations_GetDoubleConsensusByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DoubleConsensusOperation' /v1/operations/double_consensus/count: get: tags: - Operations summary: Get double consensus count description: Returns the total number of double consensus operations. operationId: Operations_GetDoubleConsensusCount parameters: - name: kind in: query description: Filter by misbehaviour kind (`double_attestation` or `double_preattestation`). schema: nullable: true oneOf: - $ref: '#/components/schemas/DoubleConsensusKindParameter' x-position: 1 x-tzkt-extension: query-parameter x-tzkt-query-parameter: double_attestation,double_preattestation - name: level in: query description: Filter by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filter by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/nonce_revelations: get: tags: - Operations summary: Get nonce revelations description: Returns a list of seed nonce revelation operations. operationId: Operations_GetNonceRevelations parameters: - name: anyof in: query description: 'Filters nonce revelation operations by any of the specified fields. Example: `anyof.baker.sender=tz1...` will return operations where `baker` OR `sender` is equal to the specified value. This parameter is useful when you need to retrieve all operations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: baker,sender - name: baker in: query description: 'Filters nonce revelation operations by baker. Allowed fields for `.eqx` mode: `sender`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: sender in: query description: 'Filters nonce revelation operations by sender. Allowed fields for `.eqx` mode: `baker`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: Filters nonce revelation operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: revealedCycle in: query description: Filters by cycle for which the nonce was revealed. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters nonce revelation operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 7 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 8 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts nonce revelation operations by specified field. Supported fields: `id` (default), `level`, `revealedLevel`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 11 - 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: 12 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/NonceRevelationOperation' /v1/operations/nonce_revelations/{hash}: get: tags: - Operations summary: Get nonce revelation by hash description: Returns a seed nonce revelation operation with specified hash. operationId: Operations_GetNonceRevelationByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/NonceRevelationOperation' /v1/operations/nonce_revelations/count: get: tags: - Operations summary: Get nonce revelations count description: Returns the total number of seed nonce revelation operations. operationId: Operations_GetNonceRevelationsCount parameters: - name: level in: query description: Filters seed nonce revelation operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters seed nonce revelation operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/vdf_revelations: get: tags: - Operations summary: Get vdf revelations description: Returns a list of vdf revelation operations. operationId: Operations_GetVdfRevelations parameters: - name: baker in: query description: 'Filters by baker. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: cycle in: query description: Filters by cycle in which the operation was included. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 5 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/VdfRevelationOperation' /v1/operations/vdf_revelations/{hash}: get: tags: - Operations summary: Get vdf revelation by hash description: Returns a vdf revelation operation with specified hash. operationId: Operations_GetVdfRevelationByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/VdfRevelationOperation' /v1/operations/vdf_revelations/count: get: tags: - Operations summary: Get vdf revelations count description: Returns the total number of vdf revelation operations. operationId: Operations_GetVdfRevelationsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/drain_delegate: get: tags: - Operations summary: Get drain delegate description: Returns a list of drain delegate operations. operationId: Operations_GetDrainDelegateOps parameters: - name: anyof in: query description: 'Filters by any of the specified fields. Example: `anyof.delegate.target=tz1...` will return operations where `delegate` OR `target` is equal to the specified value. This parameter is useful when you need to retrieve all operations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: delegate,target - name: delegate in: query description: 'Filters by drained baker. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: target in: query description: 'Filters by target. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 5 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DrainDelegateOperation' /v1/operations/drain_delegate/{hash}: get: tags: - Operations summary: Get drain delegate by hash description: Returns a drain delegate operation with specified hash. operationId: Operations_GetDrainDelegateByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DrainDelegateOperation' /v1/operations/drain_delegate/count: get: tags: - Operations summary: Get drain delegate count description: Returns the total number of drain delegate operations. operationId: Operations_GetDrainDelegateOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/delegations: get: tags: - Operations summary: Get delegations description: Returns a list of delegation operations. operationId: Operations_GetDelegations parameters: - name: anyof in: query description: 'Filters delegations by any of the specified fields. Example: `anyof.prevDelegate.newDelegate=tz1...` will return operations where `prevDelegate` OR `newDelegate` is equal to the specified value. This parameter is useful when you need to retrieve all delegations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: sender,prevDelegate,newDelegate - name: initiator in: query description: 'Filters delegations by initiator. Allowed fields for `.eqx` mode: `prevDelegate`, `newDelegate`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: sender in: query description: 'Filters delegations by sender. Allowed fields for `.eqx` mode: `prevDelegate`, `newDelegate`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: prevDelegate in: query description: 'Filters delegations by prev delegate. Allowed fields for `.eqx` mode: `initiator`, `sender`, `newDelegate`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 4 x-tzkt-extension: query-parameter - name: newDelegate in: query description: 'Filters delegations by new delegate. Allowed fields for `.eqx` mode: `initiator`, `sender`, `prevDelegate`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 5 x-tzkt-extension: query-parameter - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: level in: query description: Filters delegations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters delegations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 8 x-tzkt-extension: query-parameter - name: senderCodeHash in: query description: Filters by `senderCodeHash`. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 9 x-tzkt-extension: query-parameter - name: status in: query description: Filters delegations by operation status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 10 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 11 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts delegations by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 12 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 13 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 14 - 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: 15 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DelegationOperation' /v1/operations/delegations/{hash}: get: tags: - Operations summary: Get delegation by hash description: Returns a delegation operation with specified hash. operationId: Operations_GetDelegationByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DelegationOperation' /v1/operations/delegations/{hash}/status: get: tags: - Operations summary: Get delegation status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetDelegationStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/delegations/count: get: tags: - Operations summary: Get delegations count description: Returns the total number of delegation operations. operationId: Operations_GetDelegationsCount parameters: - name: level in: query description: Filters delegations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters delegations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/originations: get: tags: - Operations summary: Get originations description: Returns a list of origination operations. operationId: Operations_GetOriginations parameters: - name: anyof in: query description: 'Filters originations by any of the specified fields. Example: `anyof.sender.initiator=tz1...` will return operations where `sender` OR `initiator` is equal to the specified value. This parameter is useful when you need to retrieve all originations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: initiator,sender,contractDelegate,originatedContract - name: initiator in: query description: 'Filters origination operations by initiator. Allowed fields for `.eqx` mode: `contractDelegate`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: sender in: query description: 'Filters origination operations by sender. Allowed fields for `.eqx` mode: `contractDelegate`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: contractDelegate in: query description: 'Filters origination operations by delegate. Allowed fields for `.eqx` mode: `initiator`, `sender`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 4 x-tzkt-extension: query-parameter - name: originatedContract in: query description: 'Filters origination operations by originated contract. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 5 x-tzkt-extension: query-parameter - name: id in: query description: Filters origination operations by internal TzKT id schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: typeHash in: query description: Filters origination operations by 32-bit hash of originated contract parameter and storage types (helpful for searching originations of similar contracts) schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: codeHash in: query description: Filters origination operations by 32-bit hash of originated contract code (helpful for searching originations of same contracts) schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 8 x-tzkt-extension: query-parameter - name: level in: query description: Filters origination operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 9 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters origination operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 10 x-tzkt-extension: query-parameter - name: senderCodeHash in: query description: Filters by `senderCodeHash`. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 11 x-tzkt-extension: query-parameter - name: anyCodeHash in: query description: Filters by either `senderCodeHash` or `codeHash`. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 12 x-tzkt-extension: query-parameter - name: status in: query description: Filters origination operations by operation status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 13 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 14 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts originations by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `storageUsed`, `bakerFee`, `storageFee`, `allocationFee`, `contractBalance`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 15 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 16 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 17 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 18 - 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: 19 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/OriginationOperation' /v1/operations/originations/{hash}: get: tags: - Operations summary: Get origination by hash description: Returns origination operations with specified hash. operationId: Operations_GetOriginationByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: $ref: '#/components/schemas/MichelineFormat' x-position: 2 - 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: 3 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/OriginationOperation' /v1/operations/originations/{hash}/status: get: tags: - Operations summary: Get origination status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetOriginationStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/originations/count: get: tags: - Operations summary: Get originations count description: Returns the total number of origination operations. operationId: Operations_GetOriginationsCount parameters: - name: level in: query description: Filters originations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters originations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/transactions: get: tags: - Operations summary: Get transactions description: Returns a list of transaction operations. operationId: Operations_GetTransactions parameters: - name: anyof in: query description: 'Filters transactions by any of the specified fields. Example: `anyof.sender.target=tz1...` will return operations where `sender` OR `target` is equal to the specified value. This parameter is useful when you need to retrieve all transactions associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: sender,target,initiator - name: initiator in: query description: 'Filters transactions by initiator. Allowed fields for `.eqx` mode: `target`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: sender in: query description: 'Filters transactions by sender. Allowed fields for `.eqx` mode: `target`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: target in: query description: 'Filters transactions by target. Allowed fields for `.eqx` mode: `sender`, `initiator`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 4 x-tzkt-extension: query-parameter - name: amount in: query description: Filters transactions by amount (micro tez). schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: id in: query description: Filters transactions by id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: level in: query description: Filters transactions by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters transactions by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 8 x-tzkt-extension: query-parameter - name: senderCodeHash in: query description: Filters by `senderCodeHash`. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 9 x-tzkt-extension: query-parameter - name: targetCodeHash in: query description: Filters by `targetCodeHash`. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 10 x-tzkt-extension: query-parameter - name: codeHash in: query description: Filters by either `senderCodeHash` or `targetCodeHash`. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 11 x-tzkt-extension: query-parameter - name: entrypoint in: query description: Filters transactions by entrypoint called on the target contract. schema: nullable: true oneOf: - $ref: '#/components/schemas/StringParameter' x-position: 12 x-tzkt-extension: query-parameter - name: parameter in: query description: "Filters transactions by parameter value. Note, this query parameter supports the following format: `?parameter{.path?}{.mode?}=...`,\n so you can specify a path to a particular field to filter by, for example: `?parameter.token_id=...` or `?parameter.sigs.0.ne=...`.\n Also, note that `.value` part must be omitted in the path, so, for example, filtering by `parameter.value.foo` must be specified as `?parameter.foo=...`." schema: nullable: true oneOf: - $ref: '#/components/schemas/JsonParameter' x-position: 13 x-tzkt-extension: json-parameter - name: hasInternals in: query description: Filters transactions by presence of internal operations. schema: nullable: true oneOf: - $ref: '#/components/schemas/BoolParameter' x-position: 14 x-tzkt-extension: query-parameter - name: status in: query description: Filters transactions by operation status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 15 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 16 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts transactions by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `storageUsed`, `bakerFee`, `storageFee`, `allocationFee`, `amount`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 17 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 18 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 19 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 20 - 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: 21 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TransactionOperation' /v1/operations/transactions/{hash}: get: tags: - Operations summary: Get transaction by hash description: Returns transaction operations with specified hash. operationId: Operations_GetTransactionByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 2 - 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: 3 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TransactionOperation' /v1/operations/transactions/{hash}/{counter}: get: tags: - Operations summary: Get transaction by hash and counter description: Returns transaction operations with specified hash and counter. operationId: Operations_GetTransactionByHashCounter parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: counter in: path required: true description: Operation counter schema: type: integer format: int32 x-position: 2 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 3 - 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: 4 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TransactionOperation' /v1/operations/transactions/{hash}/{counter}/{nonce}: get: tags: - Operations summary: Get transaction by hash, counter and nonce description: Returns an internal transaction operation with specified hash, counter and nonce. operationId: Operations_GetTransactionByHashCounterNonce parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: counter in: path required: true description: Operation counter schema: type: integer format: int32 x-position: 2 - name: nonce in: path required: true description: Operation nonce (internal) schema: type: integer format: int32 x-position: 3 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 4 - 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: 5 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TransactionOperation' /v1/operations/transactions/{hash}/status: get: tags: - Operations summary: Get transaction status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTransactionStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/transactions/count: get: tags: - Operations summary: Get transactions count description: Returns the total number of transaction operations. operationId: Operations_GetTransactionsCount parameters: - name: anyof in: query description: 'Filters transactions by any of the specified fields. Example: `anyof.sender.target=tz1...` will return operations where `sender` OR `target` is equal to the specified value. This parameter is useful when you need to retrieve all transactions associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: sender,target,initiator - name: initiator in: query description: 'Filters transactions by initiator. Allowed fields for `.eqx` mode: `target`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: sender in: query description: 'Filters transactions by sender. Allowed fields for `.eqx` mode: `target`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: target in: query description: 'Filters transactions by target. Allowed fields for `.eqx` mode: `sender`, `initiator`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 4 x-tzkt-extension: query-parameter - name: amount in: query description: Filters transactions by amount (micro tez). schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: level in: query description: Filters transactions by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters transactions by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 7 x-tzkt-extension: query-parameter - name: entrypoint in: query description: Filters transactions by entrypoint called on the target contract. schema: nullable: true oneOf: - $ref: '#/components/schemas/StringParameter' x-position: 8 x-tzkt-extension: query-parameter - name: parameter in: query description: "Filters transactions by parameter value. Note, this query parameter supports the following format: `?parameter{.path?}{.mode?}=...`,\n so you can specify a path to a particular field to filter by, for example: `?parameter.token_id=...` or `?parameter.sigs.0.ne=...`.\n Also, note that `.value` part must be omitted in the path, so, for example, filtering by `parameter.value.foo` must be specified as `?parameter.foo=...`." schema: nullable: true oneOf: - $ref: '#/components/schemas/JsonParameter' x-position: 9 x-tzkt-extension: json-parameter - name: status in: query description: Filters transactions by operation status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 10 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/reveals: get: tags: - Operations summary: Get reveals description: Returns a list of reveal operations. operationId: Operations_GetReveals parameters: - name: sender in: query description: 'Filters reveal operations by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: level in: query description: Filters reveal operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters reveal operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter - name: status in: query description: Filters reveal operations by operation status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 4 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 5 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts reveals by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 6 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 7 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 8 - 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: 9 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/RevealOperation' /v1/operations/reveals/{hash}: get: tags: - Operations summary: Get reveal by hash description: Returns reveal operation with specified hash. operationId: Operations_GetRevealByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/RevealOperation' /v1/operations/reveals/{hash}/status: get: tags: - Operations summary: Get reveal status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetRevealStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/reveals/count: get: tags: - Operations summary: Get reveals count description: Returns the total number of reveal operations. operationId: Operations_GetRevealsCount parameters: - name: level in: query description: Filters reveals by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters reveals by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/register_constants: get: tags: - Operations summary: Get register constants description: Returns a list of register global constant operations. operationId: Operations_GetRegisterConstants parameters: - name: sender in: query description: 'Filters operations by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: address in: query description: Filters operations by global address of the created constant (starts with `expr..`). schema: nullable: true oneOf: - $ref: '#/components/schemas/ExpressionParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters operations by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts operations by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `storageUsed`, `bakerFee`, `storageFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - name: micheline in: query description: 'Format of the constant value: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 10 - 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: 11 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/RegisterConstantOperation' /v1/operations/register_constants/{hash}: get: tags: - Operations summary: Get register constant by hash description: Returns register global constant operation with specified hash. operationId: Operations_GetRegisterConstantByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: micheline in: query description: 'Format of the constant value: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 2 - 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: 3 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/RegisterConstantOperation' /v1/operations/register_constants/{hash}/status: get: tags: - Operations summary: Get register constant status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetRegisterConstantStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/register_constants/count: get: tags: - Operations summary: Get register constants count description: Returns the total number of register global constant operations. operationId: Operations_GetRegisterConstantsCount parameters: - name: level in: query description: Filters operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/set_deposits_limits: get: tags: - Operations summary: Get set deposits limits description: Returns a list of set deposits limit operations. operationId: Operations_GetSetDepositsLimits parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 4 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 5 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 6 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 7 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 8 - 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: 9 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SetDepositsLimitOperation' /v1/operations/set_deposits_limits/{hash}: get: tags: - Operations summary: Get set deposits limit by hash description: Returns set deposits limit operation with specified hash. operationId: Operations_GetSetDepositsLimitByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SetDepositsLimitOperation' /v1/operations/set_deposits_limits/{hash}/status: get: tags: - Operations summary: Get set deposits limit status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetSetDepositsLimitStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/set_deposits_limits/count: get: tags: - Operations summary: Get set deposits limits count description: Returns the total number of set deposits limit operations. operationId: Operations_GetSetDepositsLimitsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/transfer_ticket: get: tags: - Operations summary: Get transfer ticket description: Returns a list of transfer ticket operations. operationId: Operations_GetTransferTicketOps parameters: - name: anyof in: query description: 'Filters by any of the specified fields. Example: `anyof.sender.target=tz1...` will return operations where `sender` OR `target` is equal to the specified value. This parameter is useful when you need to retrieve all operations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: sender,target,ticketer - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: target in: query description: 'Filters by target. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: Filters by id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: ticketer in: query description: 'Filters by ticketer. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 5 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 7 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 8 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 9 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 10 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 11 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 12 - name: micheline in: query description: 'Format of the content value: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 13 - 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: 14 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TransferTicketOperation' /v1/operations/transfer_ticket/{hash}: get: tags: - Operations summary: Get transfer ticket by hash description: Returns transfer ticket operation with specified hash. operationId: Operations_GetTransferTicketOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - name: micheline in: query description: 'Format of the content value: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 2 - 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: 3 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TransferTicketOperation' /v1/operations/transfer_ticket/{hash}/status: get: tags: - Operations summary: Get transfer ticket status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTransferTicketStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/transfer_ticket/count: get: tags: - Operations summary: Get transfer ticket count description: Returns the total number of transfer ticket operations. operationId: Operations_GetTransferTicketOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/tx_rollup_commit: get: tags: - Operations summary: Get tx rollup commit description: Returns a list of tx rollup commit operations. operationId: Operations_GetTxRollupCommitOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: rollup in: query description: 'Filters by rollup. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupCommitOperation' /v1/operations/tx_rollup_commit/{hash}: get: tags: - Operations summary: Get tx rollup commit by hash description: Returns tx rollup commit operation with specified hash. operationId: Operations_GetTxRollupCommitOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupCommitOperation' /v1/operations/tx_rollup_commit/{hash}/status: get: tags: - Operations summary: Get tx rollup commit status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTxRollupCommitStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/tx_rollup_commit/count: get: tags: - Operations summary: Get tx rollup commit count description: Returns the total number of tx rollup commit operations. operationId: Operations_GetTxRollupCommitOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/tx_rollup_dispatch_tickets: get: tags: - Operations summary: Get tx rollup dispatch tickets description: Returns a list of tx rollup dispatch tickets operations. operationId: Operations_GetTxRollupDispatchTicketsOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: rollup in: query description: 'Filters by rollup. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupDispatchTicketsOperation' /v1/operations/tx_rollup_dispatch_tickets/{hash}: get: tags: - Operations summary: Get tx rollup dispatch tickets by hash description: Returns tx rollup dispatch tickets operation with specified hash. operationId: Operations_GetTxRollupDispatchTicketsOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupDispatchTicketsOperation' /v1/operations/tx_rollup_dispatch_tickets/{hash}/status: get: tags: - Operations summary: Get tx rollup dispatch tickets status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTxRollupDispatchTicketsStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/tx_rollup_dispatch_tickets/count: get: tags: - Operations summary: Get tx rollup dispatch tickets count description: Returns the total number of tx rollup dispatch tickets operations. operationId: Operations_GetTxRollupDispatchTicketsOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/tx_rollup_finalize_commitment: get: tags: - Operations summary: Get tx rollup finalize commitment description: Returns a list of tx rollup finalize commitment operations. operationId: Operations_GetTxRollupFinalizeCommitmentOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: rollup in: query description: 'Filters by rollup. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupFinalizeCommitmentOperation' /v1/operations/tx_rollup_finalize_commitment/{hash}: get: tags: - Operations summary: Get tx rollup finalize commitment by hash description: Returns tx rollup finalize commitment operation with specified hash. operationId: Operations_GetTxRollupFinalizeCommitmentOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupFinalizeCommitmentOperation' /v1/operations/tx_rollup_finalize_commitment/{hash}/status: get: tags: - Operations summary: Get tx rollup finalize commitment status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTxRollupFinalizeCommitmentStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/tx_rollup_finalize_commitment/count: get: tags: - Operations summary: Get tx rollup finalize commitment count description: Returns the total number of tx rollup finalize commitment operations. operationId: Operations_GetTxRollupFinalizeCommitmentOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/tx_rollup_origination: get: tags: - Operations summary: Get tx rollup origination description: Returns a list of tx rollup origination operations. operationId: Operations_GetTxRollupOriginationOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: rollup in: query description: 'Filters by rollup. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupOriginationOperation' /v1/operations/tx_rollup_origination/{hash}: get: tags: - Operations summary: Get tx rollup origination by hash description: Returns tx rollup origination operation with specified hash. operationId: Operations_GetTxRollupOriginationOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupOriginationOperation' /v1/operations/tx_rollup_origination/{hash}/status: get: tags: - Operations summary: Get tx rollup origination status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTxRollupOriginationStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/tx_rollup_origination/count: get: tags: - Operations summary: Get tx rollup origination count description: Returns the total number of tx rollup origination operations. operationId: Operations_GetTxRollupOriginationOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/tx_rollup_rejection: get: tags: - Operations summary: Get tx rollup rejection description: Returns a list of tx rollup rejection operations. operationId: Operations_GetTxRollupRejectionOps parameters: - name: anyof in: query description: 'Filters by any of the specified fields. Example: `anyof.sender.committer=tz1...` will return operations where `sender` OR `committer` is equal to the specified value. This parameter is useful when you need to retrieve all operations associated with a specified account.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: sender,committer - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: committer in: query description: 'Filters by committer. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: rollup in: query description: 'Filters by rollup. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 8 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 11 - 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: 12 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupRejectionOperation' /v1/operations/tx_rollup_rejection/{hash}: get: tags: - Operations summary: Get tx rollup rejection by hash description: Returns tx rollup rejection operation with specified hash. operationId: Operations_GetTxRollupRejectionOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupRejectionOperation' /v1/operations/tx_rollup_rejection/{hash}/status: get: tags: - Operations summary: Get tx rollup rejection status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTxRollupRejectionStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/tx_rollup_rejection/count: get: tags: - Operations summary: Get tx rollup rejection count description: Returns the total number of tx rollup rejection operations. operationId: Operations_GetTxRollupRejectionOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/tx_rollup_remove_commitment: get: tags: - Operations summary: Get tx rollup remove commitment description: Returns a list of tx rollup remove commitment operations. operationId: Operations_GetTxRollupRemoveCommitmentOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: rollup in: query description: 'Filters by rollup. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupRemoveCommitmentOperation' /v1/operations/tx_rollup_remove_commitment/{hash}: get: tags: - Operations summary: Get tx rollup remove commitment by hash description: Returns tx rollup remove commitment operation with specified hash. operationId: Operations_GetTxRollupRemoveCommitmentOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupRemoveCommitmentOperation' /v1/operations/tx_rollup_remove_commitment/{hash}/status: get: tags: - Operations summary: Get tx rollup remove commitment status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTxRollupRemoveCommitmentStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/tx_rollup_remove_commitment/count: get: tags: - Operations summary: Get tx rollup remove commitment count description: Returns the total number of tx rollup remove commitment operations. operationId: Operations_GetTxRollupRemoveCommitmentOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/tx_rollup_return_bond: get: tags: - Operations summary: Get tx rollup return bond description: Returns a list of tx rollup return bond operations. operationId: Operations_GetTxRollupReturnBondOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: rollup in: query description: 'Filters by rollup. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupReturnBondOperation' /v1/operations/tx_rollup_return_bond/{hash}: get: tags: - Operations summary: Get tx rollup return bond by hash description: Returns tx rollup return bond operation with specified hash. operationId: Operations_GetTxRollupReturnBondOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupReturnBondOperation' /v1/operations/tx_rollup_return_bond/{hash}/status: get: tags: - Operations summary: Get tx rollup return bond status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTxRollupReturnBondStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/tx_rollup_return_bond/count: get: tags: - Operations summary: Get tx rollup return bond count description: Returns the total number of tx rollup return bond operations. operationId: Operations_GetTxRollupReturnBondOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/tx_rollup_submit_batch: get: tags: - Operations summary: Get tx rollup submit batch description: Returns a list of tx rollup submit batch operations. operationId: Operations_GetTxRollupSubmitBatchOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: rollup in: query description: 'Filters by rollup. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `bakerFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupSubmitBatchOperation' /v1/operations/tx_rollup_submit_batch/{hash}: get: tags: - Operations summary: Get tx rollup submit batch by hash description: Returns tx rollup submit batch operation with specified hash. operationId: Operations_GetTxRollupSubmitBatchOpsByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/TxRollupSubmitBatchOperation' /v1/operations/tx_rollup_submit_batch/{hash}/status: get: tags: - Operations summary: Get tx rollup submit batch status description: 'Returns operation status: `true` if applied, `false` if failed, `null` (or HTTP 204) if doesn''t exist.' operationId: Operations_GetTxRollupSubmitBatchStatus parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 responses: '200': description: '' content: application/json: schema: type: boolean nullable: true /v1/operations/tx_rollup_submit_batch/count: get: tags: - Operations summary: Get tx rollup submit batch count description: Returns the total number of tx rollup submit batch operations. operationId: Operations_GetTxRollupSubmitBatchOpsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/increase_paid_storage: get: tags: - Operations summary: Get increase paid storage description: Returns a list of increase paid storage operations. operationId: Operations_GetIncreasePaidStorageOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: contract in: query description: 'Filters by contract. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 6 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts operations by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `storageUsed`, `bakerFee`, `storageFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 7 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 8 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 9 - 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: 10 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/IncreasePaidStorageOperation' /v1/operations/increase_paid_storage/{hash}: get: tags: - Operations summary: Get increase paid storage by hash description: Returns increase paid storage operation with specified hash. operationId: Operations_GetIncreasePaidStorageByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/IncreasePaidStorageOperation' /v1/operations/increase_paid_storage/count: get: tags: - Operations summary: Get increase paid storage count description: Returns the total number of increase paid storage operations. operationId: Operations_GetIncreasePaidStorageCount parameters: - name: level in: query description: Filters operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/update_secondary_key: get: tags: - Operations summary: Get update secondary key description: Returns a list of update secondary key operations. operationId: Operations_GetUpdateSecondaryKeyOps parameters: - name: sender in: query description: 'Filters by sender. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: keyType in: query description: Filters by key type (`consensus` or `companion`). schema: nullable: true oneOf: - $ref: '#/components/schemas/SecondaryKeyTypeParameter' x-position: 2 x-tzkt-extension: query-parameter x-tzkt-query-parameter: consensus,companion - name: activationCycle in: query description: Filters by activation cycle. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: publicKeyHash in: query description: Filters by pkh (tz address). schema: nullable: true oneOf: - $ref: '#/components/schemas/AddressParameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: status in: query description: Filters by status (`applied`, `failed`, `backtracked`, `skipped`). schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 8 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts operations by specified field. Supported fields: `id` (default), `level`, `gasUsed`, `storageUsed`, `bakerFee`, `storageFee`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 11 - 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: 12 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/UpdateSecondaryKeyOperation' /v1/operations/update_secondary_key/{hash}: get: tags: - Operations summary: Get update secondary key by hash description: Returns update secondary key operation with specified hash. operationId: Operations_GetUpdateSecondaryKeyByHash parameters: - name: hash in: path required: true description: Operation hash schema: type: string x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/UpdateSecondaryKeyOperation' /v1/operations/update_secondary_key/count: get: tags: - Operations summary: Get update secondary key count description: Returns the total number of update secondary key operations. operationId: Operations_GetUpdateSecondaryKeyOpsCount parameters: - name: keyType in: query description: Filters operations key type (`consensus` or `companion`). schema: nullable: true oneOf: - $ref: '#/components/schemas/SecondaryKeyTypeParameter' x-position: 1 x-tzkt-extension: query-parameter x-tzkt-query-parameter: consensus,companion - name: level in: query description: Filters operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/sr_add_messages: get: tags: - Operations summary: Get smart rollup add messages description: Returns a list of smart rollup add messages operations. operationId: Operations_GetSmartRollupAddMessagesOps parameters: - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 2 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 5 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 6 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 7 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 8 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 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: 11 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 12 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: 13 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SmartRollupAddMessagesOperation' /v1/operations/sr_add_messages/count: get: tags: - Operations summary: Get smart rollup add messages count description: Returns a total number of smart rollup add messages operations. operationId: Operations_GetSmartRollupAddMessagesOpsCount parameters: - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 2 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 5 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 6 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 7 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 8 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/sr_cement: get: tags: - Operations summary: Get smart rollup cement description: Returns a list of smart rollup cement operations. operationId: Operations_GetSmartRollupCementOps parameters: - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 1 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 3 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 8 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 9 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 10 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 11 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: 12 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 13 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: 14 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SmartRollupCementOperation' /v1/operations/sr_cement/count: get: tags: - Operations summary: Get smart rollup cement count description: Returns a total number of smart rollup cement operations. operationId: Operations_GetSmartRollupCementOpsCount parameters: - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 1 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 3 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 8 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 9 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/sr_execute: get: tags: - Operations summary: Get smart rollup execute description: Returns a list of smart rollup execute operations. operationId: Operations_GetSmartRollupExecuteOps parameters: - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 1 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 3 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 8 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 9 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 10 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 11 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: 12 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 13 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: 14 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SmartRollupExecuteOperation' /v1/operations/sr_execute/count: get: tags: - Operations summary: Get smart rollup execute count description: Returns a total number of smart rollup execute operations. operationId: Operations_GetSmartRollupExecuteOpsCount parameters: - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 1 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 3 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 8 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 9 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/sr_originate: get: tags: - Operations summary: Get smart rollup originate description: Returns a list of smart rollup originate operations. operationId: Operations_GetSmartRollupOriginateOps parameters: - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 1 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 3 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 8 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 9 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 10 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 11 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: 12 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 13 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: 14 - name: micheline in: query description: 'Format of the parameter type value: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 15 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SmartRollupOriginateOperation' /v1/operations/sr_originate/count: get: tags: - Operations summary: Get smart rollup originate count description: Returns a total number of smart rollup originate operations. operationId: Operations_GetSmartRollupOriginateOpsCount parameters: - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 1 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 3 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 7 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 8 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 9 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/sr_publish: get: tags: - Operations summary: Get smart rollup publish description: Returns a list of smart rollup publish operations. operationId: Operations_GetSmartRollupPublishOps parameters: - name: commitment.id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: commitment.hash in: query description: "Filter by commitment hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Src1HashParameter' x-position: 2 x-tzkt-extension: query-parameter - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 5 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 8 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 9 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 10 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 11 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 12 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 13 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: 14 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 15 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: 16 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SmartRollupPublishOperation' /v1/operations/sr_publish/count: get: tags: - Operations summary: Get smart rollup publish count description: Returns a total number of smart rollup publish operations. operationId: Operations_GetSmartRollupPublishOpsCount parameters: - name: commitment.id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: commitment.hash in: query description: "Filter by commitment hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Src1HashParameter' x-position: 2 x-tzkt-extension: query-parameter - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 5 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 8 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 9 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 10 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 11 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/sr_recover_bond: get: tags: - Operations summary: Get smart rollup recover bond description: Returns a list of smart rollup recover bond operations. operationId: Operations_GetSmartRollupRecoverBondOps parameters: - name: anyof in: query description: "Filter by any of the specified fields (`sender` or `staker`).\nExample: `anyof.sender.staker=tz1...` will return operations where `sender` OR `staker` is equal to the specified value.\nThis parameter is useful when you need to get all operations somehow related to the account in a single request. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter - name: staker in: query description: "Filter by staker address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 5 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 8 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 9 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 10 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 11 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 12 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 13 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: 14 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 15 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: 16 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SmartRollupRecoverBondOperation' /v1/operations/sr_recover_bond/count: get: tags: - Operations summary: Get smart rollup recover bond count description: Returns a total number of smart rollup recover bond operations. operationId: Operations_GetSmartRollupRecoverBondOpsCount parameters: - name: anyof in: query description: "Filter by any of the specified fields (`sender` or `staker`).\nExample: `anyof.sender.staker=tz1...` will return operations where `sender` OR `staker` is equal to the specified value.\nThis parameter is useful when you need to get all operations somehow related to the account in a single request. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter - name: staker in: query description: "Filter by staker address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 5 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 8 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 9 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 10 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 11 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/sr_refute: get: tags: - Operations summary: Get smart rollup refute description: Returns a list of smart rollup refute operations. operationId: Operations_GetSmartRollupRefuteOps parameters: - name: anyof in: query description: "Filter by any of the specified fields (`sender`, `initiator`, or `opponent`).\nExample: `anyof.initiator.opponent=tz1...` will return operations where `initiator` OR `opponent` is equal to the specified value.\nThis parameter is useful when you need to get all operations somehow related to the account in a single request. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter - name: game.id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: game.initiator in: query description: "Filter by initiator (who found a wrong commitment and started the refutation game). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: game.initiatorCommitment.id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: game.initiatorCommitment.hash in: query description: "Filter by commitment hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Src1HashParameter' x-position: 5 x-tzkt-extension: query-parameter - name: game.opponent in: query description: "Filter by opponent (who was accused in publishing a wrong commitment). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 6 x-tzkt-extension: query-parameter - name: game.opponentCommitment.id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: game.opponentCommitment.hash in: query description: "Filter by commitment hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Src1HashParameter' x-position: 8 x-tzkt-extension: query-parameter - name: move in: query description: "Filter by refutation game move (`start`, `dissection`, `proof`, or `timeout`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/RefutationMoveParameter' x-position: 9 x-tzkt-extension: query-parameter x-tzkt-query-parameter: start,dissection,proof,timeout - name: gameStatus in: query description: "Filter by refutation game status (`none`, `ongoing`, `loser`, or `draw`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/RefutationGameStatusParameter' x-position: 10 x-tzkt-extension: query-parameter x-tzkt-query-parameter: none,ongoing,loser,draw - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 11 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 12 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 13 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 14 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 15 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 16 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 17 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 18 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 19 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 20 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 21 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: 22 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 23 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: 24 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SmartRollupRefuteOperation' /v1/operations/sr_refute/count: get: tags: - Operations summary: Get smart rollup refute count description: Returns a total number of smart rollup refute operations. operationId: Operations_GetSmartRollupRefuteOpsCount parameters: - name: anyof in: query description: "Filter by any of the specified fields (`sender`, `initiator`, or `opponent`).\nExample: `anyof.initiator.opponent=tz1...` will return operations where `initiator` OR `opponent` is equal to the specified value.\nThis parameter is useful when you need to get all operations somehow related to the account in a single request. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter - name: game.id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: game.initiator in: query description: "Filter by initiator (who found a wrong commitment and started the refutation game). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: game.initiatorCommitment.id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: game.initiatorCommitment.hash in: query description: "Filter by commitment hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Src1HashParameter' x-position: 5 x-tzkt-extension: query-parameter - name: game.opponent in: query description: "Filter by opponent (who was accused in publishing a wrong commitment). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 6 x-tzkt-extension: query-parameter - name: game.opponentCommitment.id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: game.opponentCommitment.hash in: query description: "Filter by commitment hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Src1HashParameter' x-position: 8 x-tzkt-extension: query-parameter - name: move in: query description: "Filter by refutation game move (`start`, `dissection`, `proof`, or `timeout`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/RefutationMoveParameter' x-position: 9 x-tzkt-extension: query-parameter x-tzkt-query-parameter: start,dissection,proof,timeout - name: gameStatus in: query description: "Filter by refutation game status (`none`, `ongoing`, `loser`, or `draw`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/RefutationGameStatusParameter' x-position: 10 x-tzkt-extension: query-parameter x-tzkt-query-parameter: none,ongoing,loser,draw - name: rollup in: query description: "Filter by rollup address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/SmartRollupParameter' x-position: 11 x-tzkt-extension: query-parameter - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 12 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 13 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 14 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 15 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 16 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 17 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 18 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 19 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/staking: get: tags: - Operations summary: Get staking ops description: Returns a list of staking operations. operationId: Operations_GetStakingOps parameters: - name: anyof in: query description: "Filter by any of the specified fields (`sender`, or `baker`).\nExample: `anyof.sender.baker=tz1...` will return operations where `sender` OR `baker` is equal to the specified value.\nThis parameter is useful when you need to get all operations somehow related to the account in a single request. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter - name: staker in: query description: "Filter by staker address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: baker in: query description: "Filter by baker address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: action in: query description: "Filter by staking action (`stake`, `unstake`, `finalize`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/StakingActionParameter' x-position: 4 x-tzkt-extension: query-parameter x-tzkt-query-parameter: stake,unstake,finalize - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 6 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 8 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 9 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 10 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 11 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 12 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 13 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 14 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: 15 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 16 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: 17 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/StakingOperation' /v1/operations/staking/count: get: tags: - Operations summary: Get staking ops count description: Returns a total number of staking operations. operationId: Operations_GetStakingOpsCount parameters: - name: anyof in: query description: "Filter by any of the specified fields (`sender`, or `baker`).\nExample: `anyof.sender.baker=tz1...` will return operations where `sender` OR `baker` is equal to the specified value.\nThis parameter is useful when you need to get all operations somehow related to the account in a single request. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter - name: staker in: query description: "Filter by staker address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: baker in: query description: "Filter by baker address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: action in: query description: "Filter by staking action (`stake`, `unstake`, `finalize`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/StakingActionParameter' x-position: 4 x-tzkt-extension: query-parameter x-tzkt-query-parameter: stake,unstake,finalize - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 6 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 8 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 9 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 10 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 11 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 12 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/migrations: get: tags: - Operations summary: Get migrations description: Returns a list of migration operations (synthetic type). operationId: Operations_GetMigrations parameters: - name: account in: query description: 'Filters migration operations by account. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 1 x-tzkt-extension: query-parameter - name: kind in: query description: Filters migration operations by kind (`bootstrap`, `activate_delegate`, `airdrop`, `proposal_invoice`, `origination`, `subsidy`, `remove_bigmap_key`). schema: nullable: true oneOf: - $ref: '#/components/schemas/MigrationKindParameter' x-position: 2 x-tzkt-extension: query-parameter x-tzkt-query-parameter: bootstrap,activate_delegate,airdrop,proposal_invoice,code_change,origination,subsidy,remove_bigmap_key - name: balanceChange in: query description: Filters migration operations by amount. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: Filters migration operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: Filters migration operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters migration operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 7 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts migrations by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 8 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 9 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 10 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 11 - 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: 12 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/MigrationOperation' /v1/operations/migrations/{id}: get: tags: - Operations summary: Get migration by id description: Returns migration operation with specified id. operationId: Operations_GetMigrationById parameters: - name: id in: path required: true description: Operation id schema: type: integer format: int64 x-position: 1 - name: micheline in: query description: 'Format of the parameters, storage and diffs: `0` - JSON, `1` - JSON string, `2` - raw micheline, `3` - raw micheline string' schema: default: Json oneOf: - $ref: '#/components/schemas/MichelineFormat' x-position: 2 - 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: 3 responses: '200': description: '' content: application/json: schema: $ref: '#/components/schemas/MigrationOperation' /v1/operations/migrations/count: get: tags: - Operations summary: Get migrations count description: Returns the total number of migration operations (synthetic type). operationId: Operations_GetMigrationsCount parameters: - name: level in: query description: Filters migrations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters migrations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/revelation_penalties: get: tags: - Operations summary: Get revelation penalties description: Returns a list of revelation penalty operations (synthetic type). operationId: Operations_GetRevelationPenalties parameters: - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: baker in: query description: 'Filters revelation penalty operations by baker. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters revelation penalty operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters revelation penalty operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 5 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts revelation penalty operations by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 6 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 7 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 8 - 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: 9 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/RevelationPenaltyOperation' /v1/operations/revelation_penalties/{id}: get: tags: - Operations summary: Get revelation penalty by id description: Returns revelation penalty operation with specified id. operationId: Operations_GetRevelationPenaltyById parameters: - name: id in: path required: true description: Operation id schema: type: integer format: int64 x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: $ref: '#/components/schemas/RevelationPenaltyOperation' /v1/operations/revelation_penalties/count: get: tags: - Operations summary: Get revelation penalties count description: Returns the total number of revelation penalty operations (synthetic type). operationId: Operations_GetRevelationPenaltiesCount parameters: - name: level in: query description: Filters revelation penalty operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters revelation penalty operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/baking: get: tags: - Operations summary: Get baking description: Returns a list of baking operations (synthetic type). operationId: Operations_GetBaking parameters: - name: anyof in: query description: 'Filters by any of the specified fields. Example: `anyof.proposer.producer=tz1...`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AnyOfParameter' x-position: 1 x-tzkt-extension: anyof-parameter x-tzkt-anyof-parameter: proposer,producer - name: proposer in: query description: 'Filters by block proposer. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: producer in: query description: 'Filters by block producer. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 3 x-tzkt-extension: query-parameter - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: level in: query description: Filters baking operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 5 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters baking operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 6 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 7 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts baking operations by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 8 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 9 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 10 - 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: 11 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/BakingOperation' /v1/operations/baking/{id}: get: tags: - Operations summary: Get baking by id description: Returns baking operation with specified id. operationId: Operations_GetBakingById parameters: - name: id in: path required: true description: Operation id schema: type: integer format: int64 x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: $ref: '#/components/schemas/BakingOperation' /v1/operations/baking/count: get: tags: - Operations summary: Get baking count description: Returns the total number of baking operations (synthetic type). operationId: Operations_GetBakingCount parameters: - name: level in: query description: Filters baking operations by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters baking operations by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/attestation_rewards: get: tags: - Operations summary: Get attestation rewards description: Returns a list of attestation reward operations (synthetic type). operationId: Operations_GetAttestationRewards parameters: - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: baker in: query description: 'Filters by baker. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 5 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 6 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 7 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 8 - 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: 9 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/AttestationRewardOperation' /v1/operations/attestation_rewards/{id}: get: tags: - Operations summary: Get attestation reward by id description: Returns attestation reward operation with specified id. operationId: Operations_GetAttestationRewardById parameters: - name: id in: path required: true description: Operation id schema: type: integer format: int64 x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: $ref: '#/components/schemas/AttestationRewardOperation' /v1/operations/attestation_rewards/count: get: tags: - Operations summary: Get attestation rewards count description: Returns the total number of attestation reward operations (synthetic type). operationId: Operations_GetAttestationRewardsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/dal_attestation_reward: get: tags: - Operations summary: Get dal attestation rewards description: Returns a list of dal attestation reward operations (synthetic type). operationId: Operations_GetDalAttestationRewards parameters: - name: id in: query description: Filters operations by internal TzKT id. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: baker in: query description: 'Filters by baker. Allowed fields for `.eqx` mode: none.' schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 2 x-tzkt-extension: query-parameter - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 4 x-tzkt-extension: query-parameter - name: select in: query description: 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. schema: nullable: true oneOf: - $ref: '#/components/schemas/SelectParameter' x-position: 5 x-tzkt-extension: query-parameter - name: sort in: query description: 'Sorts by specified field. Supported fields: `id` (default), `level`.' schema: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 6 x-tzkt-extension: query-parameter - name: offset in: query description: Specifies which or how many items should be skipped schema: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 7 x-tzkt-extension: query-parameter - name: limit in: query description: Maximum number of items to return schema: type: integer format: int32 default: 100 maximum: 10000.0 minimum: 0.0 x-position: 8 - 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: 9 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DalAttestationRewardOperation' /v1/operations/dal_attestation_reward/{id}: get: tags: - Operations summary: Get dal attestation reward by id description: Returns dal attestation reward operation with specified id. operationId: Operations_GetDalAttestationRewardById parameters: - name: id in: path required: true description: Operation id schema: type: integer format: int64 x-position: 1 - 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: 2 responses: '200': description: '' content: application/json: schema: $ref: '#/components/schemas/DalAttestationRewardOperation' /v1/operations/dal_attestation_reward/count: get: tags: - Operations summary: Get dal attestation rewards count description: Returns the total number of dal attestation reward operations (synthetic type). operationId: Operations_GetDalAttestationRewardsCount parameters: - name: level in: query description: Filters by level. schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: timestamp in: query description: Filters by timestamp. schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 2 x-tzkt-extension: query-parameter responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/autostaking: get: tags: - Operations summary: Get autostaking ops description: Returns a list of autostaking operations. operationId: Operations_GetAutostakingOps parameters: - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by level of the block where the operation happened. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the block where the operation happened. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter - name: baker in: query description: "Filter by baker. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 4 x-tzkt-extension: query-parameter - name: action in: query description: "Filter by autostaking action. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/StakingActionParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: stake,unstake,finalize - name: amount in: query description: "Filter by amount. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: stakingUpdatesCount in: query description: "Filter by number of staking updates. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 8 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 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: 11 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 12 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: 13 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/AutostakingOperation' /v1/operations/autostaking/count: get: tags: - Operations summary: Get autostaking ops count description: Returns a total number of autostaking operations. operationId: Operations_GetAutostakingOpsCount parameters: - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by level of the block where the operation happened. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 2 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the block where the operation happened. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 3 x-tzkt-extension: query-parameter - name: baker in: query description: "Filter by baker. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 4 x-tzkt-extension: query-parameter - name: action in: query description: "Filter by autostaking action. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/StakingActionParameter' x-position: 5 x-tzkt-extension: query-parameter x-tzkt-query-parameter: stake,unstake,finalize - name: amount in: query description: "Filter by amount. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 6 x-tzkt-extension: query-parameter - name: stakingUpdatesCount in: query description: "Filter by number of staking updates. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 7 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 8 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/set_delegate_parameters: get: tags: - Operations summary: Get set_delegate_parameters ops description: Returns a list of set_delegate_parameters operations. operationId: Operations_GetSetDelegateParametersOps parameters: - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 2 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 5 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 6 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 7 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 8 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 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: 11 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 12 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: 13 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/SetDelegateParametersOperation' /v1/operations/set_delegate_parameters/count: get: tags: - Operations summary: Get set_delegate_parameters ops count description: Returns a total number of set_delegate_parameters operations. operationId: Operations_GetSetDelegateParametersOpsCount parameters: - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 2 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 5 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 6 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 7 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 8 responses: '200': description: '' content: application/json: schema: type: integer format: int32 /v1/operations/dal_publish_commitment: get: tags: - Operations summary: Get dal_publish_commitment ops description: Returns a list of dal_publish_commitment operations. operationId: Operations_GetDalPublishCommitmentOps parameters: - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 2 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 5 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 6 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 7 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 8 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SortParameter' x-position: 9 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: nullable: true oneOf: - $ref: '#/components/schemas/OffsetParameter' x-position: 10 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: 11 - 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: nullable: true oneOf: - $ref: '#/components/schemas/SelectionParameter' x-position: 12 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: 13 responses: '200': description: '' content: application/json: schema: type: array items: $ref: '#/components/schemas/DalPublishCommitmentOperation' /v1/operations/dal_publish_commitment/count: get: tags: - Operations summary: Get dal_publish_commitment ops count description: Returns a total number of dal_publish_commitment operations. operationId: Operations_GetDalPublishCommitmentOpsCount parameters: - name: id in: query description: "Filter by internal TzKT id. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int64Parameter' x-position: 1 x-tzkt-extension: query-parameter - name: hash in: query description: "Filter by operation hash. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OpHashParameter' x-position: 2 x-tzkt-extension: query-parameter - name: counter in: query description: "Filter by operation counter. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 3 x-tzkt-extension: query-parameter - name: level in: query description: "Filter by the domain level. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/Int32Parameter' x-position: 4 x-tzkt-extension: query-parameter - name: timestamp in: query description: "Filter by timestamp (ISO 8601) of the operation. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/TimestampParameter' x-position: 5 x-tzkt-extension: query-parameter - name: status in: query description: "Filter by operation status (`applied`, `failed`, `backtracked`, `skipped`). \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/OperationStatusParameter' x-position: 6 x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped - name: sender in: query description: "Filter by operation sender address. \nClick on the parameter to expand more details." schema: nullable: true oneOf: - $ref: '#/components/schemas/AccountParameter' x-position: 7 x-tzkt-extension: query-parameter - name: or.ColsAndVals in: query style: form explode: true schema: type: array items: $ref: '#/components/schemas/ValueTupleOfStringAndListOfInteger' x-position: 8 responses: '200': description: '' content: application/json: schema: type: integer format: int32 components: schemas: JsonParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a JSON value to get items where the specified field is equal to the specified value. Example: `?parameter.from=tz1...` or `?parameter.signatures.[3].[0]=null` or `?parameter.sigs.[*]=null`.' nullable: true x-tzkt-extension: json-parameter ne: type: string description: '**Not equal** filter mode. \ Specify a JSON value to get items where the specified field is not equal to the specified value. Example: `?parameter.ne=true` or `?parameter.amount.ne=0`.' nullable: true x-tzkt-extension: json-parameter gt: type: string description: '**Greater than** filter mode. \ Specify a string to get items where the specified field is greater than the specified value. Note that all stored JSON values are strings, so this will be a comparison of two strings, so we recommend comparing values of the same type, e.g. numeric strings with numeric strings (`parameter.number.gt=123`), datetime strings with datetime strings (`parameter.date.gt=2021-01-01`), etc. Otherwise, result may surprise you. Example: `?parameter.balance.gt=1234` or `?parameter.time.gt=2021-02-01`.' nullable: true x-tzkt-extension: json-parameter ge: type: string description: '**Greater or equal** filter mode. \ Specify a string to get items where the specified field is greater than equal to the specified value. Note that all stored JSON values are strings, so this will be a comparison of two strings, so we recommend comparing values of the same type, e.g. numeric strings with numeric strings (`parameter.number.gt=123`), datetime strings with datetime strings (`parameter.date.gt=2021-01-01`), etc. Otherwise, result may surprise you. Example: `?parameter.balance.ge=1234` or `?parameter.time.ge=2021-02-01`.' nullable: true x-tzkt-extension: json-parameter lt: type: string description: '**Less than** filter mode. \ Specify a string to get items where the specified field is less than the specified value. Note that all stored JSON values are strings, so this will be a comparison of two strings, so we recommend comparing values of the same type, e.g. numeric strings with numeric strings (`parameter.number.gt=123`), datetime strings with datetime strings (`parameter.date.gt=2021-01-01`), etc. Otherwise, result may surprise you. Example: `?parameter.balance.lt=1234` or `?parameter.time.lt=2021-02-01`.' nullable: true x-tzkt-extension: json-parameter le: type: string description: '**Less or equal** filter mode. \ Specify a string to get items where the specified field is less than or equal to the specified value. Note that all stored JSON values are strings, so this will be a comparison of two strings, so we recommend comparing values of the same type, e.g. numeric strings with numeric strings (`parameter.number.gt=123`), datetime strings with datetime strings (`parameter.date.gt=2021-01-01`), etc. Otherwise, result may surprise you. Example: `?parameter.balance.le=1234` or `?parameter.time.le=2021-02-01`.' nullable: true x-tzkt-extension: json-parameter as: type: string description: '**Same as** filter mode. \ Specify a string template to get items where the specified field matches the specified template. \ This mode supports wildcard `*`. Use `\*` as an escape symbol. Example: `?parameter.as=*mid*` or `?parameter.as=*end`.' nullable: true x-tzkt-extension: json-parameter un: type: string description: '**Unlike** filter mode. \ Specify a string template to get items where the specified field doesn''t match the specified template. This mode supports wildcard `*`. Use `\*` as an escape symbol. Example: `?parameter.un=*mid*` or `?parameter.un=*end`.' nullable: true x-tzkt-extension: json-parameter in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of strings or JSON array to get items where the specified field is equal to one of the specified values. \ Example: `?parameter.amount.in=1,2,3` or `?parameter.in=[{"from":"tz1","to":"tz2"},{"from":"tz2","to":"tz1"}]`.' nullable: true items: type: string x-tzkt-extension: json-parameter ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of strings to get items where the specified field is not equal to all the specified values. \ Use `\,` as an escape symbol. Example: `?parameter.amount.ni=1,2,3` or `?parameter.ni=[{"from":"tz1","to":"tz2"},{"from":"tz2","to":"tz1"}]`.' nullable: true items: type: string x-tzkt-extension: json-parameter 'null': type: boolean description: '**Is null** filter mode. \ Use this mode to get items where the specified field is null or not. Example: `?parameter.null` or `?parameter.null=false` or `?parameter.sigs.[0].null=false`.' x-tzkt-extension: json-parameter x-tzkt-extension: json-parameter OffsetParameter: type: object additionalProperties: false properties: el: type: integer 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 nullable: true pg: type: integer description: '**Page** offset mode. \ Skips `page * limit` elements. This is a classic pagination. Example: `?offset.pg=1`.' format: int32 nullable: true cr: type: integer 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 nullable: true x-tzkt-extension: query-parameter UpdateSecondaryKeyOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `update_secondary_key` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' keyType: type: string description: 'Type of the key: `consensus` or `companion`' activationCycle: type: integer description: Index of the cycle from which the secondary key will be active format: int32 publicKey: type: string description: Secondary key publicKeyHash: type: string description: Secondary key hash errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' SrGameInfo: type: object additionalProperties: false properties: id: type: integer description: 'Internal TzKT id. ' format: int64 initiator: description: Initiator, who found a wrong commitment and started the refutation game. oneOf: - $ref: '#/components/schemas/Alias' initiatorCommitment: description: Initiator's version of a valid commitment oneOf: - $ref: '#/components/schemas/SrCommitmentInfo' opponent: description: Opponent, who was accused in publishing a wrong commitment. oneOf: - $ref: '#/components/schemas/Alias' opponentCommitment: description: Opponent's version of a valid commitment oneOf: - $ref: '#/components/schemas/SrCommitmentInfo' initiatorReward: type: integer description: In case the initiator won, this field will contain the reward amount (in mutez). format: int64 nullable: true initiatorLoss: type: integer description: In case the initiator lost (including a `draw`), this field will contain the loss amount (in mutez). format: int64 nullable: true opponentReward: type: integer description: In case the opponent won, this field will contain the reward amount (in mutez). format: int64 nullable: true opponentLoss: type: integer description: In case the opponent lost (including a `draw`), this field will contain the loss amount (in mutez). format: int64 nullable: true OpHashParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify an operation hash to get items where the specified field is equal to the specified value. Example: `?hash=opQRQbP...`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify an operation hash to get items where the specified field is not equal to the specified value. Example: `?hash.ne=opQRQbP...`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of operation hashes to get items where the specified field is equal to one of the specified values. Example: `?hash.in=hash1,hash2,hash3`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of operation hashes to get items where the specified field is not equal to all the specified values. Example: `?hash.ni=hash1,hash2,hash3`.' nullable: true items: type: string x-tzkt-extension: query-parameter OperationStatusParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=applied` is the same as `param=applied`). \ Specify an operation status to get items where the specified field is equal to the specified value. Example: `?type=failed`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify an operation status to get items where the specified field is not equal to the specified value. Example: `?type.ne=applied`.' nullable: true x-tzkt-extension: query-parameter x-tzkt-query-parameter: applied,failed,backtracked,skipped TxParameter: type: object additionalProperties: false properties: entrypoint: type: string description: Entrypoint called on the target contract value: description: 'Value passed to the called entrypoint converted to human-readable JSON. Note: you can configure parameters format by setting `micheline` query parameter.' nullable: true SmartRollupAddMessagesOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `sr_add_messages` id: type: integer description: "Unique ID of the operation, stored in the TzKT indexer database \n**[sortable]**" format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' messagesCount: type: integer description: Number of messages added to the smart rollup inbox format: int32 errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' AccountParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a `tz` or `KT` address to get items where the specified field is equal to the specified value. Example: `?sender=tz1WnfXMPaNTBmH7DBPwqCWs9cPDJdkGBTZ8`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a `tz` or `KT` address to get items where the specified field is not equal to the specified value. Example: `?sender.ne=tz1WnfXMPaNTBmH7DBPwqCWs9cPDJdkGBTZ8`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of addresses to get items where the specified field is equal to one of the specified values. Example: `?sender.in=tz1WnfXMPaNTBWnfXMPaNTBWnfXMPaNTBNTB,tz1SiPXX4MYGNJNDSiPXX4MYGNJNDSiPXX4M`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of addresses to get items where the specified field is not equal to all the specified values. Example: `?sender.ni=tz1WnfXMPaNTBWnfXMPaNTBWnfXMPaNTBNTB,tz1SiPXX4MYGNJNDSiPXX4MYGNJNDSiPXX4M`.' nullable: true items: type: string eqx: type: string description: '**Equal to another field** filter mode. \ Specify a field name to get items where the specified fields are equal. Example: `?sender.eqx=target`.' nullable: true nex: type: string description: '**Not equal to another field** filter mode. \ Specify a field name to get items where the specified fields are not equal. Example: `?sender.nex=initiator`.' nullable: true 'null': type: boolean description: '**Is null** filter mode. \ Use this mode to get items where the specified field is null or not. Example: `?initiator.null` or `?initiator.null=false`.' nullable: true inHasNull: type: boolean niHasNull: type: boolean x-tzkt-extension: query-parameter VoteParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a value to get items where the specified field is equal to the specified value. Example: `?vote=yay`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a value to get items where the specified field is not equal to the specified value. Example: `?vote.ne=pass`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of values to get items where the specified field is equal to one of the specified values. Example: `?vote.in=yay,nay`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of values to get items where the specified field is not equal to all the specified values. Example: `?vote.ni=yay,nay`.' nullable: true items: type: string x-tzkt-extension: query-parameter x-tzkt-query-parameter: yay,nay,pass SmartRollupRecoverBondOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `sr_recover_bond` id: type: integer description: "Unique ID of the operation, stored in the TzKT indexer database \n**[sortable]**" format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' rollup: description: Smart rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' staker: description: Staker account, which's bond should be returned nullable: true oneOf: - $ref: '#/components/schemas/Alias' bond: type: integer description: Amount of bonds returned (micro tez) format: int64 errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' SmartRollupParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify an `sr1` address to get items where the specified field is equal to the specified value. Example: `?rollup=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify an `sr1` address to get items where the specified field is not equal to the specified value. Example: `?rollup.ne=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of `sr1` addresses to get items where the specified field is equal to one of the specified values. Example: `?rollup.in=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB,sr1UsFZWCrnHH5zDfihZpSjYbc1iwLnAbEum`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of `sr1` addresses to get items where the specified field is not equal to all the specified values. Example: `?rollup.ni=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB,sr1UsFZWCrnHH5zDfihZpSjYbc1iwLnAbEum`.' nullable: true items: type: string x-tzkt-extension: query-parameter DalEntrapmentEvidenceOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `dal_entrapment_evidence` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation accuser: description: Information about the baker, produced the block, in which the evidence was included oneOf: - $ref: '#/components/schemas/Alias' offender: description: Information about the baker, accused for attesting trapped shard oneOf: - $ref: '#/components/schemas/Alias' trapLevel: type: integer description: Height of the block from the genesis, where the trap was attested format: int32 trapSlotIndex: type: integer description: Trap slot index format: int32 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' Int32Parameter: type: object additionalProperties: false properties: eq: type: integer description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify an integer number to get items where the specified field is equal to the specified value. Example: `?balance=1234`.' format: int32 nullable: true ne: type: integer description: '**Not equal** filter mode. \ Specify an integer number to get items where the specified field is not equal to the specified value. Example: `?balance.ne=1234`.' format: int32 nullable: true gt: type: integer description: '**Greater than** filter mode. \ Specify an integer number to get items where the specified field is greater than the specified value. Example: `?balance.gt=1234`.' format: int32 nullable: true ge: type: integer description: '**Greater or equal** filter mode. \ Specify an integer number to get items where the specified field is greater than equal to the specified value. Example: `?balance.ge=1234`.' format: int32 nullable: true lt: type: integer description: '**Less than** filter mode. \ Specify an integer number to get items where the specified field is less than the specified value. Example: `?balance.lt=1234`.' format: int32 nullable: true le: type: integer description: '**Less or equal** filter mode. \ Specify an integer number to get items where the specified field is less than or equal to the specified value. Example: `?balance.le=1234`.' format: int32 nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of integers to get items where the specified field is equal to one of the specified values. Example: `?level.in=12,14,52,69`.' nullable: true items: type: integer format: int32 ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of integers to get items where the specified field is not equal to all the specified values. Example: `?level.ni=12,14,52,69`.' nullable: true items: type: integer format: int32 x-tzkt-extension: query-parameter SetDelegateParametersOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `set_delegate_parameters` id: type: integer description: "Internal TzKT ID. \n**[sortable]**" format: int64 level: type: integer description: Height of the block from the genesis format: int32 timestamp: type: string description: Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 limitOfStakingOverBaking: type: integer description: This parameter determines the maximum portion (millionth) of external stake by stakers over the baker's own staked funds format: int64 nullable: true edgeOfBakingOverStaking: type: integer description: This parameter determines the fraction (billionth) of the rewards that accrue to the delegate’s frozen deposit – the remainder is shared among its stakers format: int64 nullable: true activationCycle: type: integer description: Cycle from which the specified staking parameters are activated format: int32 nullable: true status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' BallotOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `ballot` - is used to vote for a proposal in a given voting cycle id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation period: description: Information about the voting period for which the ballot was submitted oneOf: - $ref: '#/components/schemas/PeriodInfo' proposal: description: Information about the proposal for which ballot was submitted oneOf: - $ref: '#/components/schemas/ProposalAlias' delegate: description: Information about the delegate (baker), submitted the ballot oneOf: - $ref: '#/components/schemas/Alias' votingPower: type: integer description: Baker's voting power format: int64 vote: type: string description: Vote, given in the ballot (`yay`, `nay`, or `pass`) quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' OperationError: type: object discriminator: propertyName: type mapping: error.id: '#/components/schemas/BaseOperationError' contract.balance_too_low: '#/components/schemas/BalanceTooLowError' contract.non_existing_contract: '#/components/schemas/NonExistingContractError' contract.manager.unregistered_delegate: '#/components/schemas/UnregisteredDelegateError' Expression_already_registered: '#/components/schemas/ExpressionAlreadyRegisteredError' x-abstract: true additionalProperties: false required: - type properties: type: type: string description: 'Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors' ExpressionParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify an expression hash to get items where the specified field is equal to the specified value. Example: `?address=expr...`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify an expression hash to get items where the specified field is not equal to the specified value. Example: `?address.ne=expr...`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of expression hashes to get items where the specified field is equal to one of the specified values. Example: `?address.in=expr1,expr2`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of expression hashes to get items where the specified field is not equal to all the specified values. Example: `?address.ni=expr1,expr2`.' nullable: true items: type: string x-tzkt-extension: query-parameter AnyOfParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a value to get items where any of the specified fields is equal to the specified value. Example: `?anyof.sender.target=tz1WnfXMPaNTBmH7DBPwqCWs9cPDJdkGBTZ8`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of values to get items where any of the specified fields is equal to one of the specified values. Example: `?anyof.sender.target.in=tz1WnfXMPaNTBWnfXMPaNTBWnfXMPaNTBNTB,tz1SiPXX4MYGNJNDSiPXX4MYGNJNDSiPXX4M,null`.' nullable: true items: type: string 'null': type: boolean description: '**Is null** filter mode. \ Use this mode to get items where any of the specified fields is null or not. Example: `?anyof.from.to.null` or `?anyof.from.to.null=false`.' nullable: true x-tzkt-extension: anyof-parameter OriginatedContract: type: object additionalProperties: false properties: kind: type: string description: 'Kind of the contract (`delegator_contract` or `smart_contract`), where `delegator_contract` - manager.tz smart contract for delegation purpose only' alias: type: string description: Name of the project behind the contract or contract description nullable: true address: type: string description: Public key hash of the contract typeHash: type: integer description: '32-bit hash of the contract parameter and storage types. This field can be used for searching similar contracts (which have the same interface).' format: int32 codeHash: type: integer description: '32-bit hash of the contract code. This field can be used for searching same contracts (which have the same script).' format: int32 tzips: type: array description: List of implemented standards (TZIPs) nullable: true items: type: string RegisterConstantOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: 'Type of the operation, `register_constant` - is used to register a global constant - Micheline expression that can be reused by multiple smart contracts' id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for used the blockchain storage (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' address: type: string description: Global address of the registered constant (null if the operation failed) nullable: true value: description: 'Constant value. Note: you can configure code format by setting `micheline` query parameter (`0 | 2` - raw micheline, `1 | 3` - raw micheline string).' nullable: true errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' DoubleBakingOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: 'Type of the operation, `double_baking` - is used by bakers to provide evidence of double baking (baking two different blocks at the same height) by a baker' id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: Height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation accusedLevel: type: integer description: Height of the block from the genesis, which was double baked format: int32 slashedLevel: type: integer description: Height of the block from the genesis, at which the offender was slashed format: int32 accuser: description: Information about the baker, produced the block, in which the accusation was included oneOf: - $ref: '#/components/schemas/Alias' reward: type: integer description: Reward of the baker, produced the block, in which the accusation was included format: int64 offender: description: Information about the baker, accused for producing two different blocks at the same level oneOf: - $ref: '#/components/schemas/Alias' lostStaked: type: integer description: Amount slashed from baker's own staked balance format: int64 lostUnstaked: type: integer description: Amount slashed from baker's own unstaked balance format: int64 lostExternalStaked: type: integer description: Amount slashed from baker's external staked balance format: int64 lostExternalUnstaked: type: integer description: Amount slashed from baker's external unstaked balance format: int64 stakingUpdatesCount: type: integer description: Number of staking updates happened internally format: int32 nullable: true quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' MichelineFormat: type: string description: '' x-enumNames: - Json - JsonString - Raw - RawString enum: - Json - JsonString - Raw - RawString TxRollupReturnBondOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `tx_rollup_return_bond` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 rollup: description: Information about the rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' bond: type: integer description: Amount of bonds unlocked (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' BigMapDiff: type: object additionalProperties: false properties: bigmap: type: integer description: Bigmap Id format: int32 path: type: string description: Path to the bigmap in the contract storage action: type: string description: Action with the bigmap (`allocate`, `add_key`, `update_key`, `remove_key`, `remove`) content: description: 'Affected key. If the action is `allocate` or `remove` the content will be `null`.' nullable: true oneOf: - $ref: '#/components/schemas/BigMapKeyShort' PeriodInfo: type: object additionalProperties: false properties: index: type: integer description: Voting period index, starting from zero format: int32 epoch: type: integer description: Voting epoch index, starting from zero format: int32 kind: type: string description: 'Kind of the voting period `proposal` - delegates can submit protocol amendment proposals using the proposal operation `exploration` - bakers (delegates) may vote on the top-ranked proposal from the previous Proposal Period using the ballot operation `testing` - If the proposal is approved in the Exploration Period, the testing (or ''cooldown'') period begins and bakers start testing the new protocol `promotion` - delegates can cast one vote to promote or not the tested proposal using the ballot operation `adoption` - after the proposal is actually accepted, the ecosystem has some time to prepare to the upgrade' firstLevel: type: integer description: The height of the block in which the period starts format: int32 lastLevel: type: integer description: The height of the block in which the period ends format: int32 TransferTicketOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `transfer_ticket` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for used the blockchain storage (micro tez) format: int64 target: description: Information about the target to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' ticketer: description: Information about the ticketer nullable: true oneOf: - $ref: '#/components/schemas/Alias' amount: type: string description: Amount sent entrypoint: type: string description: Entrypoint ticketTransfersCount: type: integer description: Number of ticket transfers produced by the operation, or `null` if there are no transfers format: int32 nullable: true contentType: description: Micheline type of the content nullable: true content: description: Ticket content nullable: true status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' DalAttestationRewardOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `dal_attestation_reward` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: Height of the block from the genesis format: int32 timestamp: type: string description: Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Block hash baker: description: Baker expected to receive dal attestation reward oneOf: - $ref: '#/components/schemas/Alias' expected: type: integer description: Expected dal attestation reward, based on baker's active stake (micro tez) format: int64 rewardDelegated: type: integer description: 'Reward, corresponding to delegated stake, paid to baker''s liquid balance (micro tez) (it is not frozen and can be spent immediately).' format: int64 rewardStakedOwn: type: integer description: 'Reward, corresponding to baker''s own stake, paid to baker''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedEdge: type: integer description: 'Reward, corresponding to baker''s edge from external stake, paid to baker''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedShared: type: integer description: 'Reward, corresponding to baker''s external stake, paid to baker''s external staked balance (micro tez) (it is frozen and belongs to baker''s stakers).' format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' StakingOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `staking` id: type: integer description: "Internal TzKT ID. \n**[sortable]**" format: int64 level: type: integer description: Height of the block from the genesis format: int32 timestamp: type: string description: Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' staker: description: Information about the account for which the action is performed oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 action: type: string description: Staking action (`stake`, `unstake`, `finalize`) requestedAmount: type: integer description: Amount passed as the staking operation parameter (micro tez) format: int64 amount: type: integer description: Actually processed amount (micro tez) format: int64 nullable: true baker: description: Information about the baker nullable: true oneOf: - $ref: '#/components/schemas/Alias' stakingUpdatesCount: type: integer description: Number of staking updates happened internally format: int64 nullable: true status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' ProposalOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `proposal` - is used by bakers (delegates) to submit and/or upvote proposals to amend the protocol id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation period: description: Information about the proposal period for which the proposal was submitted (upvoted) oneOf: - $ref: '#/components/schemas/PeriodInfo' proposal: description: Information about the submitted (upvoted) proposal oneOf: - $ref: '#/components/schemas/ProposalAlias' delegate: description: Information about the baker (delegate), submitted (upvoted) the proposal operation oneOf: - $ref: '#/components/schemas/Alias' votingPower: type: integer description: Baker's voting power format: int64 duplicated: type: boolean description: Indicates whether proposal upvote has already been pushed. Duplicated proposal operations are not counted when selecting proposal-winner. quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' StringParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a string to get items where the specified field is equal to the specified value. Example: `?parameters=abc`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a string to get items where the specified field is not equal to the specified value. Example: `?parameters.ne=abc`.' nullable: true as: type: string description: '**Same as** filter mode. \ Specify a string template to get items where the specified field matches the specified template. \ This mode supports wildcard `*`. Use `\*` as an escape symbol. Example: `?parameters.as=*mid*` or `?parameters.as=*end`.' nullable: true un: type: string description: '**Unlike** filter mode. \ Specify a string template to get items where the specified field doesn''t match the specified template. This mode supports wildcard `*`. Use `\*` as an escape symbol. Example: `?parameters.un=*mid*` or `?parameters.un=*end`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of strings to get items where the specified field is equal to one of the specified values. \ Use `\,` as an escape symbol. Example: `?errors.in=bla,bal,abl`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of strings to get items where the specified field is not equal to all the specified values. \ Use `\,` as an escape symbol. Example: `?errors.ni=bla,bal,abl`.' nullable: true items: type: string 'null': type: boolean description: '**Is null** filter mode. \ Use this mode to get items where the specified field is null or not. Example: `?parameters.null` or `?parameters.null=false`.' nullable: true x-tzkt-extension: query-parameter Src1HashParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify an src1-hash to get items where the specified field is equal to the specified value. Example: `?hash=src1qwe...`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify an src1-hash to get items where the specified field is not equal to the specified value. Example: `?hash.ne=src1qwe...`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of src1-hashes to get items where the specified field is equal to one of the specified values. Example: `?hash.in=hash1,hash2,hash3`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of src1-hashes to get items where the specified field is not equal to all the specified values. Example: `?hash.ni=hash1,hash2,hash3`.' nullable: true items: type: string x-tzkt-extension: query-parameter AttestationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: 'Type of the operation, `attestation` - is operation, which specifies the head of the chain as seen by the attester of a given slot. The attester is randomly selected to be included in the block that extends the head of the chain as specified in this operation. A block with more attestations improves the weight of the chain and increases the likelihood of that chain being the canonical one.' id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation delegate: description: Information about the baker who sent the operation oneOf: - $ref: '#/components/schemas/Alias' power: type: integer description: Attestation power format: int64 deposit: type: integer description: Security deposit frozen on the baker's account format: int64 rewards: type: integer description: Reward of the baker for the operation format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' slots: type: integer description: '**DEPRECATED**' format: int32 TxRollupFinalizeCommitmentOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `tx_rollup_finalize_commitment` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 rollup: description: Information about the rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' TxRollupOriginationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `tx_rollup_origination` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 allocationFee: type: integer description: The amount of funds burned from the sender account for account creation (micro tez) format: int64 rollup: description: Information about the rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' MigrationKindParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a migration kind to get items where the specified field is equal to the specified value. Example: `?kind=bootstrap`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a migration kind to get items where the specified field is not equal to the specified value. Example: `?type.ne=proposal_invoice`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of migration kinds to get items where the specified field is equal to one of the specified values. Example: `?sender.in=bootstrap,proposal_invoice`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of migration kinds to get items where the specified field is not equal to all the specified values. Example: `?sender.ni=airdrop,bootstrap`.' nullable: true items: type: string x-tzkt-extension: query-parameter x-tzkt-query-parameter: bootstrap,activate_delegate,airdrop,proposal_invoice,code_change,origination,subsidy,remove_bigmap_key SmartRollupExecuteOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `sr_execute` id: type: integer description: "Unique ID of the operation, stored in the TzKT indexer database \n**[sortable]**" format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for used the blockchain storage (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' rollup: description: Smart rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' commitment: description: Executed commitment nullable: true oneOf: - $ref: '#/components/schemas/SrCommitmentInfo' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' ticketTransfersCount: type: integer description: Number of ticket transfers produced by the operation, or `null` if there are no transfers format: int32 nullable: true quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' ActivationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: 'Type of the operation, `activation` - is used to activate accounts that were recommended allocations of tezos tokens for donations to the Tezos Foundation’s fundraiser.' id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block, from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation account: description: Information about activated account oneOf: - $ref: '#/components/schemas/Alias' balance: type: integer description: Account activation balance of tezos tokens that were recommended allocations for donations to the Tezos Foundation’s fundraiser format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' ProtocolParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a protocol hash to get items where the specified field is equal to the specified value. Example: `?protocol=PsCARTHAGaz...`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a protocol hash to get items where the specified field is not equal to the specified value. Example: `?sender.ne=PsBabyM1eUX...`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of protocol hashes to get items where the specified field is equal to one of the specified values. Example: `?sender.in=PsCARTHAGaz,PsBabyM1eUX`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of protocol hashes to get items where the specified field is not equal to all the specified values. Example: `?sender.ni=PsCARTHAGaz,PsBabyM1eUX`.' nullable: true items: type: string x-tzkt-extension: query-parameter DoubleConsensusOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: 'Type of the operation, `double_consensus` - is used by bakers to provide evidence of double (pre)attestation ((pre)attestation of two different blocks at the same block height) by a baker' id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: Height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation accusedLevel: type: integer description: 'Height of the block from the genesis, at which double (pre)attestation occurred ' format: int32 slashedLevel: type: integer description: Height of the block from the genesis, at which the offender was slashed format: int32 kind: type: string description: Kind of misbehaviour (`double_attestation` or `double_preattestation`) accuser: description: Information about the baker, produced the block, in which the accusation was included oneOf: - $ref: '#/components/schemas/Alias' reward: type: integer description: Reward of the baker, produced the block, in which the accusation was included format: int64 offender: description: Information about the baker, accused for producing two different attestations at the same level oneOf: - $ref: '#/components/schemas/Alias' lostStaked: type: integer description: Amount slashed from baker's own staked balance format: int64 lostUnstaked: type: integer description: Amount slashed from baker's own unstaked balance format: int64 lostExternalStaked: type: integer description: Amount slashed from baker's external staked balance format: int64 lostExternalUnstaked: type: integer description: Amount slashed from baker's external unstaked balance format: int64 stakingUpdatesCount: type: integer description: Number of staking updates happened internally format: int32 nullable: true quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' PreattestationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `preattestation` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation delegate: description: Information about the baker who sent the operation oneOf: - $ref: '#/components/schemas/Alias' power: type: integer description: Attestation power format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' slots: type: integer description: '**DEPRECATED**' format: int32 RevealOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `reveal` - is used to reveal the public key associated with an account id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' publicKey: type: string description: Revealed public key nullable: true errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' DelegationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `delegation` - is used to delegate funds to a delegate (an implicit account registered as a baker) id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 initiator: description: Information about the initiator of the delegation contract call nullable: true oneOf: - $ref: '#/components/schemas/Alias' sender: description: Information about the delegated account oneOf: - $ref: '#/components/schemas/Alias' senderCodeHash: type: integer description: Hash of the sender contract code, or `null` is the sender is not a contract format: int32 nullable: true nonce: type: integer description: An account nonce which is used to prevent internal operation replay format: int32 nullable: true gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to a baker, produced block, in which the operation was included format: int64 amount: type: integer description: Sender's balance at the time of delegation operation (aka delegation amount). format: int64 stakingUpdatesCount: type: integer description: Number of staking updates happened internally format: int32 nullable: true prevDelegate: description: Information about the previous delegate of the account. `null` if there is no previous delegate nullable: true oneOf: - $ref: '#/components/schemas/Alias' newDelegate: description: Information about the delegate to which the operation was sent. `null` if there is no new delegate (an un-delegation operation) nullable: true oneOf: - $ref: '#/components/schemas/Alias' status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' VdfRevelationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `vdf_revelation` - used by the blockchain to create randomness id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation baker: description: Information about the delegate (baker), who produced the block with the operation oneOf: - $ref: '#/components/schemas/Alias' cycle: type: integer description: Cycle in which the operation was included format: int32 solution: type: string description: Vdf solution proof: type: string description: Vdf proof rewardDelegated: type: integer description: 'Reward, corresponding to delegated stake, paid to baker''s liquid balance (micro tez) (it is not frozen and can be spent immediately).' format: int64 rewardStakedOwn: type: integer description: 'Reward, corresponding to baker''s own stake, paid to baker''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedEdge: type: integer description: 'Reward, corresponding to baker''s edge from external stake, paid to baker''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedShared: type: integer description: 'Reward, corresponding to baker''s external stake, paid to baker''s external staked balance (micro tez) (it is frozen and belongs to baker''s stakers).' format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' TxRollupSubmitBatchOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `tx_rollup_submit_batch` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for used the blockchain storage (micro tez) format: int64 rollup: description: Information about the rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' BigMapKeyShort: type: object additionalProperties: false properties: hash: type: string description: Key hash key: description: Key in JSON or Micheline format, depending on the `micheline` query parameter. value: description: 'Value in JSON or Micheline format, depending on the `micheline` query parameter. Note, if the action is `remove_key` it will contain the last non-null value.' OriginationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `origination` - deployment / contract creation operation. id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 initiator: description: Information about the initiator of the contract call nullable: true oneOf: - $ref: '#/components/schemas/Alias' sender: description: Information about the account, created a contract oneOf: - $ref: '#/components/schemas/Alias' senderCodeHash: type: integer description: Hash of the sender contract code, or `null` is the sender is not a contract format: int32 nullable: true nonce: type: integer description: An account nonce which is used to prevent internal operation replay format: int32 nullable: true gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for contract storage in the blockchain (micro tez) format: int64 allocationFee: type: integer description: The amount of funds burned from the sender account for contract account creation (micro tez) format: int64 contractBalance: type: integer description: The contract origination balance (micro tez) format: int64 contractDelegate: description: Information about the baker (delegate), which was marked as a delegate in the operation nullable: true oneOf: - $ref: '#/components/schemas/Alias' code: description: 'Contract code. Note: you can configure code format by setting `micheline` query parameter (`0 | 2` - raw micheline, `1 | 3` - raw micheline string).' nullable: true storage: description: 'Initial contract storage value converted to human-readable JSON. Note: you can configure storage format by setting `micheline` query parameter.' nullable: true diffs: type: array description: List of bigmap updates (aka big_map_diffs) caused by the origination. nullable: true items: $ref: '#/components/schemas/BigMapDiff' status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was a successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' originatedContract: description: Information about the originated ( deployed / created ) contract nullable: true oneOf: - $ref: '#/components/schemas/OriginatedContract' tokenTransfersCount: type: integer description: Number of token transfers produced by the operation, or `null` if there are no transfers format: int32 nullable: true quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' IncreasePaidStorageOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `increase_paid_storage` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for used the blockchain storage (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' contract: description: Information about the contract for which paid storage was increased nullable: true oneOf: - $ref: '#/components/schemas/Alias' amount: type: string description: Amount of storage in bytes prepaid. errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' ValueTupleOfStringAndListOfInteger: type: object additionalProperties: false QuoteShort: type: object additionalProperties: false properties: btc: type: number description: XTZ/BTC price format: double nullable: true eur: type: number description: XTZ/EUR price format: double nullable: true usd: type: number description: XTZ/USD price format: double nullable: true cny: type: number description: XTZ/CNY price format: double nullable: true jpy: type: number description: XTZ/JPY price format: double nullable: true krw: type: number description: XTZ/KRW price format: double nullable: true eth: type: number description: XTZ/ETH price format: double nullable: true gbp: type: number description: XTZ/GBP price format: double nullable: true DrainDelegateOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `drain_delegate` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation delegate: description: Information about the drained delegate oneOf: - $ref: '#/components/schemas/Alias' target: description: Information about the recipient account oneOf: - $ref: '#/components/schemas/Alias' amount: type: integer description: Amount sent from the drained baker to the target format: int64 fee: type: integer description: Amount sent from the drained baker to the block baker format: int64 allocationFee: type: integer description: The amount of funds burned from the drained baker for account creation (micro tez) format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' AttestationRewardOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `attestation_reward` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: Height of the block from the genesis format: int32 timestamp: type: string description: Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Block hash baker: description: Baker expected to receive attestation reward oneOf: - $ref: '#/components/schemas/Alias' expected: type: integer description: Expected attestation reward, based on baker's active stake (micro tez) format: int64 rewardDelegated: type: integer description: 'Reward, corresponding to delegated stake, paid to baker''s liquid balance (micro tez) (it is not frozen and can be spent immediately).' format: int64 rewardStakedOwn: type: integer description: 'Reward, corresponding to baker''s own stake, paid to baker''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedEdge: type: integer description: 'Reward, corresponding to baker''s edge from external stake, paid to baker''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedShared: type: integer description: 'Reward, corresponding to baker''s external stake, paid to baker''s external staked balance (micro tez) (it is frozen and belongs to baker''s stakers).' format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' SmartRollupOriginateOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `sr_originate` id: type: integer description: "Unique ID of the operation, stored in the TzKT indexer database \n**[sortable]**" format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for used the blockchain storage (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' pvmKind: type: string description: PVM kind (`arith` or `wasm`). kernel: type: string description: Kernel bytes (in base64). format: byte parameterType: description: 'Smart rollup parameter type. Note: you can configure format by setting `micheline` query parameter.' nullable: true genesisCommitment: type: string description: Genesis commitment hash. nullable: true rollup: description: Originated smart rollup. nullable: true oneOf: - $ref: '#/components/schemas/Alias' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' BakingOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `baking` - an operation which contains brief information about a baked (produced) block (synthetic type) id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: Height of the block from the genesis format: int32 timestamp: type: string description: Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Block hash proposer: description: Baker who proposed the block payload oneOf: - $ref: '#/components/schemas/Alias' producer: description: Baker who produced the block oneOf: - $ref: '#/components/schemas/Alias' payloadRound: type: integer description: Round at which the block payload was proposed format: int32 blockRound: type: integer description: Round at which the block was produced format: int32 deposit: type: integer description: Security deposit frozen on the baker's account for producing the block (micro tez) format: int64 rewardDelegated: type: integer description: 'Portion of fixed reward, corresponding to delegated stake, paid to payload proposer''s liquid balance (micro tez) (it is not frozen and can be spent immediately).' format: int64 rewardStakedOwn: type: integer description: 'Portion of fixed reward, corresponding to baker''s own stake, paid to payload proposer''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedEdge: type: integer description: 'Portion of fixed reward, corresponding to baker''s edge from external stake, paid to payload proposer''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedShared: type: integer description: 'Portion of fixed reward, corresponding to baker''s external stake, paid to payload proposer''s external staked balance (micro tez) (it is frozen and belongs to baker''s stakers).' format: int64 bonusDelegated: type: integer description: 'Portion of bonus reward, corresponding to delegated stake, paid to block producer''s liquid balance (micro tez) (it is not frozen and can be spent immediately).' format: int64 bonusStakedOwn: type: integer description: 'Portion of bonus reward, corresponding to baker''s own stake, paid to block producer''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 bonusStakedEdge: type: integer description: 'Portion of bonus reward, corresponding to baker''s edge from external stake, paid to block producer''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 bonusStakedShared: type: integer description: 'Portion of fixed reward, corresponding to baker''s external stake, paid to block producer''s external staked balance (micro tez) (it is frozen and belongs to baker''s stakers).' format: int64 fees: type: integer description: Total fee gathered from operations, included into the block format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' Symbols: type: string description: '' x-enumFlags: true x-enumNames: - None - Btc - Eur - Usd - Cny - Jpy - Krw - Eth - Gbp enum: - None - Btc - Eur - Usd - Cny - Jpy - Krw - Eth - Gbp SortParameter: type: object additionalProperties: false properties: asc: type: string description: '**Ascending** sort mode (optional, i.e. `sort.asc=id` is the same as `sort=id`). \ Specify a field name to sort by. Example: `?sort=balance`.' nullable: true desc: type: string description: '**Descending** sort mode. \ Specify a field name to sort by descending. Example: `?sort.desc=id`.' nullable: true x-tzkt-extension: query-parameter SmartRollupPublishOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `sr_publish` id: type: integer description: "Unique ID of the operation, stored in the TzKT indexer database \n**[sortable]**" format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' rollup: description: Smart rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' commitment: description: Published commitment nullable: true oneOf: - $ref: '#/components/schemas/SrCommitmentInfo' bond: type: integer description: Amount of bonds locked (micro tez) format: int64 errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' TxRollupRejectionOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `tx_rollup_rejection` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 rollup: description: Information about the rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' committer: description: Information about the committer oneOf: - $ref: '#/components/schemas/Alias' reward: type: integer description: Reward (micro tez) sent to the rejection sender format: int64 loss: type: integer description: Loss (micro tez) burned from the committer format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' SetDepositsLimitOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `set_deposits_limit` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' limit: type: string description: Frozen deposits limit (mutez), or `null` if no limit. nullable: true errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' DalPublishCommitmentOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `dal_publish_commitment` id: type: integer description: "Internal TzKT ID. \n**[sortable]**" format: int64 level: type: integer description: Height of the block from the genesis format: int32 timestamp: type: string description: Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 slot: type: integer description: Slot number format: int32 commitment: type: string description: Commitment hash status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' Int64Parameter: type: object additionalProperties: false properties: eq: type: integer description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify an integer number to get items where the specified field is equal to the specified value. Example: `?balance=1234`.' format: int64 nullable: true ne: type: integer description: '**Not equal** filter mode. \ Specify an integer number to get items where the specified field is not equal to the specified value. Example: `?balance.ne=1234`.' format: int64 nullable: true gt: type: integer description: '**Greater than** filter mode. \ Specify an integer number to get items where the specified field is greater than the specified value. Example: `?balance.gt=1234`.' format: int64 nullable: true ge: type: integer description: '**Greater or equal** filter mode. \ Specify an integer number to get items where the specified field is greater than equal to the specified value. Example: `?balance.ge=1234`.' format: int64 nullable: true lt: type: integer description: '**Less than** filter mode. \ Specify an integer number to get items where the specified field is less than the specified value. Example: `?balance.lt=1234`.' format: int64 nullable: true le: type: integer description: '**Less or equal** filter mode. \ Specify an integer number to get items where the specified field is less than or equal to the specified value. Example: `?balance.le=1234`.' format: int64 nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of integers to get items where the specified field is equal to one of the specified values. Example: `?level.in=12,14,52,69`.' nullable: true items: type: integer format: int64 ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of integers to get items where the specified field is not equal to all the specified values. Example: `?level.ni=12,14,52,69`.' nullable: true items: type: integer format: int64 empty: type: boolean x-tzkt-extension: query-parameter TxRollupRemoveCommitmentOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `tx_rollup_remove_commitment` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 rollup: description: Information about the rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' StakingActionParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a staking action to get items where the specified field is equal to the specified value. Example: `?action=stake`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a staking action to get items where the specified field is not equal to the specified value. Example: `?action.ne=finalize`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of staking actions to get items where the specified field is equal to one of the specified values. Example: `?action.in=stake,unstake`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of staking actions to get items where the specified field is not equal to all the specified values. Example: `?action.ni=unstake,finalize`.' nullable: true items: type: string x-tzkt-extension: query-parameter x-tzkt-query-parameter: stake,unstake,finalize DoubleConsensusKindParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a double consensus kind to get items where the specified field is equal to the specified value. Example: `?type=double_attestation`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a double consensus kind to get items where the specified field is not equal to the specified value. Example: `?type.ne=double_preattestation`.' nullable: true x-tzkt-extension: query-parameter x-tzkt-query-parameter: double_attestation,double_preattestation TimestampParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a datetime value to get items where the specified field is equal to the specified value. Example: `?timestamp=2020-02-20T02:40:57Z`.' format: date-time nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a datetime value to get items where the specified field is not equal to the specified value. Example: `?timestamp.ne=2020-02-20T02:40:57Z`.' format: date-time nullable: true gt: type: string description: '**Greater than** filter mode. \ Specify a datetime value to get items where the specified field is greater than the specified value. Example: `?timestamp.gt=2020-02-20T02:40:57Z`.' format: date-time nullable: true ge: type: string description: '**Greater or equal** filter mode. \ Specify a datetime value to get items where the specified field is greater than equal to the specified value. Example: `?timestamp.ge=2020-02-20T02:40:57Z`.' format: date-time nullable: true lt: type: string description: '**Less than** filter mode. \ Specify a datetime value to get items where the specified field is less than the specified value. Example: `?timestamp.lt=2020-02-20T02:40:57Z`.' format: date-time nullable: true le: type: string description: '**Less or equal** filter mode. \ Specify a datetime value to get items where the specified field is less than or equal to the specified value. Example: `?timestamp.le=2020-02-20T02:40:57Z`.' format: date-time nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of datetimes to get items where the specified field is equal to one of the specified values. Example: `?timestamp.in=2020-02-20,2020-02-21`.' nullable: true items: type: string format: date-time ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of datetimes to get items where the specified field is not equal to all the specified values. Example: `?timestamp.ni=2020-02-20,2020-02-21`.' nullable: true items: type: string format: date-time x-tzkt-extension: query-parameter SecondaryKeyTypeParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a secondary key type to get items where the specified field is equal to the specified value. Example: `?kind=consensus`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a secondary key type to get items where the specified field is not equal to the specified value. Example: `?kind.ne=companion`.' nullable: true x-tzkt-extension: query-parameter x-tzkt-query-parameter: consensus,companion SmartRollupCementOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `sr_cement` id: type: integer description: "Unique ID of the operation, stored in the TzKT indexer database \n**[sortable]**" format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' rollup: description: Smart rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' commitment: description: Cemented commitment nullable: true oneOf: - $ref: '#/components/schemas/SrCommitmentInfo' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' ProposalAlias: type: object additionalProperties: false properties: alias: type: string description: Alias of the proposal nullable: true hash: type: string description: Hash of the proposal, which representing a tarball of concatenated .ml/.mli source files AddressParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (optional, i.e. `param.eq=` is the same as `param=`). \ Specify an account address to get items where the specified field is equal to the specified value. Example: `?address=tz123..`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify an account address to get items where the specified field is not equal to the specified value. Example: `?address.ne=tz123..`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of account addresses to get items where the specified field is equal to one of the specified values. Example: `?address.in=tz123..,tz345..`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of account addresses to get items where the specified field is not equal to all the specified values. Example: `?address.ni=tz123..,tz345..`.' nullable: true items: type: string x-tzkt-extension: query-parameter Operation: allOf: - type: object discriminator: propertyName: type mapping: autostaking: '#/components/schemas/AutostakingOperation' baking: '#/components/schemas/BakingOperation' ballot: '#/components/schemas/BallotOperation' dal_attestation_reward: '#/components/schemas/DalAttestationRewardOperation' dal_entrapment_evidence: '#/components/schemas/DalEntrapmentEvidenceOperation' dal_publish_commitment: '#/components/schemas/DalPublishCommitmentOperation' delegation: '#/components/schemas/DelegationOperation' double_baking: '#/components/schemas/DoubleBakingOperation' double_consensus: '#/components/schemas/DoubleConsensusOperation' drain_delegate: '#/components/schemas/DrainDelegateOperation' attestation: '#/components/schemas/AttestationOperation' attestation_reward: '#/components/schemas/AttestationRewardOperation' increase_paid_storage: '#/components/schemas/IncreasePaidStorageOperation' migration: '#/components/schemas/MigrationOperation' nonce_revelation: '#/components/schemas/NonceRevelationOperation' origination: '#/components/schemas/OriginationOperation' preattestation: '#/components/schemas/PreattestationOperation' proposal: '#/components/schemas/ProposalOperation' register_constant: '#/components/schemas/RegisterConstantOperation' reveal: '#/components/schemas/RevealOperation' revelation_penalty: '#/components/schemas/RevelationPenaltyOperation' set_delegate_parameters: '#/components/schemas/SetDelegateParametersOperation' set_deposits_limit: '#/components/schemas/SetDepositsLimitOperation' sr_add_messages: '#/components/schemas/SmartRollupAddMessagesOperation' sr_cement: '#/components/schemas/SmartRollupCementOperation' sr_execute: '#/components/schemas/SmartRollupExecuteOperation' sr_originate: '#/components/schemas/SmartRollupOriginateOperation' sr_publish: '#/components/schemas/SmartRollupPublishOperation' sr_recover_bond: '#/components/schemas/SmartRollupRecoverBondOperation' sr_refute: '#/components/schemas/SmartRollupRefuteOperation' staking: '#/components/schemas/StakingOperation' transaction: '#/components/schemas/TransactionOperation' transfer_ticket: '#/components/schemas/TransferTicketOperation' tx_rollup_commit: '#/components/schemas/TxRollupCommitOperation' tx_rollup_dispatch_tickets: '#/components/schemas/TxRollupDispatchTicketsOperation' tx_rollup_finalize_commitment: '#/components/schemas/TxRollupFinalizeCommitmentOperation' tx_rollup_origination: '#/components/schemas/TxRollupOriginationOperation' tx_rollup_rejection: '#/components/schemas/TxRollupRejectionOperation' tx_rollup_remove_commitment: '#/components/schemas/TxRollupRemoveCommitmentOperation' tx_rollup_return_bond: '#/components/schemas/TxRollupReturnBondOperation' tx_rollup_submit_batch: '#/components/schemas/TxRollupSubmitBatchOperation' update_secondary_key: '#/components/schemas/UpdateSecondaryKeyOperation' vdf_revelation: '#/components/schemas/VdfRevelationOperation' activation: '#/components/schemas/ActivationOperation' x-abstract: true additionalProperties: false required: - type properties: type: type: string description: Type of the operation id: type: integer description: Internal ID of the operation format: int64 RefutationMoveParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify a refutation game move to get items where the specified field is equal to the specified value. Example: `?move=start`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a refutation game move to get items where the specified field is not equal to the specified value. Example: `?move.ne=start`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of refutation game moves to get items where the specified field is equal to one of the specified values. Example: `?move.in=proof,timeout`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of refutation game moves to get items where the specified field is not equal to all the specified values. Example: `?move.ni=proof,timeout`.' nullable: true items: type: string x-tzkt-extension: query-parameter x-tzkt-query-parameter: start,dissection,proof,timeout SelectionParameter: type: object additionalProperties: false properties: fields: type: array description: '**Fields** selection mode (optional, i.e. `select.fields=balance` is the same as `select=balance`). \ Specify a comma-separated list of fields to include into response. Example: `?select=address,balance as b,metadata.name as meta_name` will result in `[ { "address": "asd", "b": 10, "meta_name": "qwe" } ]`.' nullable: true items: type: string values: type: array description: '**Values** selection mode. \ Specify a comma-separated list of fields to include their values into response. Example: `?select.values=address,balance,metadata.name` will result in `[ [ "asd", 10, "qwe" ] ]`.' nullable: true items: type: string x-tzkt-extension: query-parameter TxRollupDispatchTicketsOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `tx_rollup_dispatch_tickets` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for used the blockchain storage (micro tez) format: int64 rollup: description: Information about the rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' SrCommitmentInfo: type: object additionalProperties: false properties: id: type: integer description: Internal TzKT id. format: int64 initiator: description: Account that published the commitment first. oneOf: - $ref: '#/components/schemas/Alias' inboxLevel: type: integer description: Inbox level format: int32 state: type: string description: State hash hash: type: string description: Commitment hash ticks: type: integer description: Number of ticks format: int64 firstLevel: type: integer description: Level of the block where the commitment was first published. format: int32 firstTime: type: string description: Timestamp of the block where the commitment was first published. format: date-time TxRollupCommitOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `tx_rollup_commit` id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 rollup: description: Information about the rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' bond: type: integer description: Amount of bonds (micro tez) locked format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' NonceRevelationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `nonce_revelation` - are used by the blockchain to create randomness id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation baker: description: Information about the delegate (baker), who produced the block with the operation oneOf: - $ref: '#/components/schemas/Alias' sender: description: Information about the delegate (baker), who revealed the nonce (sent the operation) oneOf: - $ref: '#/components/schemas/Alias' revealedLevel: type: integer description: Block height of the block, where seed nonce hash is stored format: int32 revealedCycle: type: integer description: Cycle for which seed nonce was revealed format: int32 nonce: type: string description: Seed nonce hex rewardDelegated: type: integer description: 'Reward, corresponding to delegated stake, paid to baker''s liquid balance (micro tez) (it is not frozen and can be spent immediately).' format: int64 rewardStakedOwn: type: integer description: 'Reward, corresponding to baker''s own stake, paid to baker''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedEdge: type: integer description: 'Reward, corresponding to baker''s edge from external stake, paid to baker''s own staked balance (micro tez) (it is frozen and belongs to the baker).' format: int64 rewardStakedShared: type: integer description: 'Reward, corresponding to baker''s external stake, paid to baker''s external staked balance (micro tez) (it is frozen and belongs to baker''s stakers).' format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' TransactionOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `transaction` - is a standard operation used to transfer tezos tokens to an account id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included hash: type: string description: Hash of the operation counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 initiator: description: Information about the initiator of the transaction call nullable: true oneOf: - $ref: '#/components/schemas/Alias' sender: description: Information about the account sent the transaction oneOf: - $ref: '#/components/schemas/Alias' senderCodeHash: type: integer description: Hash of the sender contract code, or `null` is the sender is not a contract format: int32 nullable: true nonce: type: integer description: An account nonce which is used to prevent internal operation replay format: int32 nullable: true gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 storageUsed: type: integer description: Amount of storage, consumed by the operation format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 storageFee: type: integer description: The amount of funds burned from the sender account for used the blockchain storage (micro tez) format: int64 allocationFee: type: integer description: The amount of funds burned from the sender account for account creation (micro tez) format: int64 target: description: Information about the target of the transaction nullable: true oneOf: - $ref: '#/components/schemas/Alias' targetCodeHash: type: integer description: Hash of the target contract code, or `null` is the target is not a contract format: int32 nullable: true amount: type: integer description: The transaction amount (micro tez) format: int64 parameter: description: Transaction parameter, including called entrypoint and value passed to the entrypoint. nullable: true oneOf: - $ref: '#/components/schemas/TxParameter' storage: description: 'Contract storage after executing the transaction converted to human-readable JSON. Note: you can configure storage format by setting `micheline` query parameter.' nullable: true diffs: type: array description: List of bigmap updates (aka big_map_diffs) caused by the transaction. nullable: true items: $ref: '#/components/schemas/BigMapDiff' status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' hasInternals: type: boolean description: 'An indication of whether the transaction has an internal operations `true` - there are internal operations `false` - no internal operations' tokenTransfersCount: type: integer description: Number of token transfers produced by the operation, or `null` if there are no transfers format: int32 nullable: true ticketTransfersCount: type: integer description: Number of ticket transfers produced by the operation, or `null` if there are no transfers format: int32 nullable: true eventsCount: type: integer description: Number of events produced by the operation, or `null` if there are no events format: int32 nullable: true quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' RevelationPenaltyOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `revelation_penalty` - is operation, in which rewards were lost due to unrevealed seed nonces by the delegate (synthetic type) id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included baker: description: 'Information about the delegate (baker) who has lost rewards due to unrevealed seed nonces ' oneOf: - $ref: '#/components/schemas/Alias' missedLevel: type: integer description: Height of the block, which contains hash of the seed nonce, which was to be revealed format: int32 loss: type: integer description: Reward for baking and gathered fees from the block, which were lost due to unrevealed seed nonces (micro tez) format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' Alias: type: object additionalProperties: false properties: alias: type: string description: Account alias name (off-chain data). nullable: true address: type: string description: Account address (public key hash). AutostakingOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `autostaking` id: type: integer description: "Internal TzKT ID. \n**[sortable]**" format: int64 level: type: integer description: Height of the block from the genesis format: int32 timestamp: type: string description: Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time baker: description: Baker for which autostaking event happened oneOf: - $ref: '#/components/schemas/Alias' action: type: string description: Autostaking action (`stake`, `unstake`, `finalize`) amount: type: integer description: Amount (micro tez) format: int64 stakingUpdatesCount: type: integer description: Number of staking updates happened internally format: int64 quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' BoolParameter: type: object additionalProperties: false properties: eq: type: boolean description: '**Equal** filter mode (optional, i.e. `param.eq=true` is the same as `param=true`). \ Specify a bool flag to get items where the specified field is equal to the specified value. Example: `?active=true` or `?active=1` or `?active`.' nullable: true 'null': type: boolean description: '**Is null** filter mode. \ Use this mode to get items where the specified field is null or not. Example: `?active.null` or `?active.null=false`.' nullable: true x-tzkt-extension: query-parameter SmartRollupRefuteOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `sr_refute` id: type: integer description: "Unique ID of the operation, stored in the TzKT indexer database \n**[sortable]**" format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time hash: type: string description: Hash of the operation sender: description: Information about the account who has sent the operation oneOf: - $ref: '#/components/schemas/Alias' counter: type: integer description: An account nonce which is used to prevent operation replay format: int32 gasLimit: type: integer description: A cap on the amount of gas a given operation can consume format: int32 gasUsed: type: integer description: Amount of gas, consumed by the operation format: int32 storageLimit: type: integer description: A cap on the amount of storage a given operation can consume format: int32 bakerFee: type: integer description: Fee to the baker, produced block, in which the operation was included (micro tez) format: int64 status: type: string description: 'Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)' rollup: description: Smart rollup to which the operation was sent nullable: true oneOf: - $ref: '#/components/schemas/Alias' game: description: Refutation game info nullable: true oneOf: - $ref: '#/components/schemas/SrGameInfo' move: type: string description: Player's move (`start`, `dissection`, `proof`, `timeout`) gameStatus: type: string description: Game status, after player's move (`ongoing`, `loser`, `draw`) dissectionStart: type: integer description: The first tick in the dissection range. This field is `null` if `move` is not `dissection. format: int64 nullable: true dissectionEnd: type: integer description: The last tick in the dissection range. This field is `null` if `move` is not `dissection. format: int64 nullable: true dissectionSteps: type: integer description: Total ticks in the dissection range. This field is `null` if `move` is not `dissection`. format: int32 nullable: true errors: type: array description: List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors nullable: true items: $ref: '#/components/schemas/OperationError' quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' RefutationGameStatusParameter: type: object additionalProperties: false properties: eq: type: string description: '**Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify a refutation game status to get items where the specified field is equal to the specified value. Example: `?gameStatus=draw`.' nullable: true ne: type: string description: '**Not equal** filter mode. \ Specify a refutation game status to get items where the specified field is not equal to the specified value. Example: `?gameStatus.ne=ongoing`.' nullable: true in: type: array description: '**In list** (any of) filter mode. \ Specify a comma-separated list of refutation game statuses to get items where the specified field is equal to one of the specified values. Example: `?gameStatus.in=loser,draw`.' nullable: true items: type: string ni: type: array description: '**Not in list** (none of) filter mode. \ Specify a comma-separated list of refutation game statuses to get items where the specified field is not equal to all the specified values. Example: `?gameStatus.ni=loser,draw`.' nullable: true items: type: string x-tzkt-extension: query-parameter x-tzkt-query-parameter: none,ongoing,loser,draw MigrationOperation: allOf: - type: object additionalProperties: false properties: type: type: string description: Type of the operation, `migration` - result of the context (database) migration during a protocol update (synthetic type) id: type: integer description: Unique ID of the operation, stored in the TzKT indexer database format: int64 level: type: integer description: The height of the block from the genesis block, in which the operation was included format: int32 timestamp: type: string description: Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`) format: date-time block: type: string description: Hash of the block, in which the operation was included kind: type: string description: "Kind of the migration \n`bootstrap` - balance updates, included in the first block after genesis\n`activate_delegate` - registering a new baker (delegator) during protocol migration\n`airdrop` - airdrop of 1 micro tez during Babylon protocol upgrade\n`proposal_invoice` - invoice for creation a proposal for protocol upgrade\n`code_change` - changing contract scripts during Babylon protocol upgrade\n`origination` - implicit (hardcoded in the protocol) origination of liquidity baking contracts\n`subsidy` - liquidity baking subsidy\n`remove_bigmap_key` - removing the key from the bigmap" account: description: Information about the account whose balance has updated as a result of the operation oneOf: - $ref: '#/components/schemas/Alias' balanceChange: type: integer description: The amount for which the operation updated the balance (micro tez) format: int64 storage: description: 'Contract storage after the migration converted to human-readable JSON. Note: you can configure storage format by setting `micheline` query parameter.' nullable: true diffs: type: array description: List of bigmap updates caused by the migration. nullable: true items: $ref: '#/components/schemas/BigMapDiff' tokenTransfersCount: type: integer description: Number of token transfers produced by the operation, or `null` if there are no transfers format: int32 nullable: true quote: description: Injected historical quote at the time of operation nullable: true oneOf: - $ref: '#/components/schemas/QuoteShort' SelectParameter: type: object additionalProperties: false properties: fields: type: array description: '**Fields** selection mode (optional, i.e. `select.fields=balance` is the same as `select=balance`). \ Specify a comma-separated list of fields to include into response. Example: `?select=address,balance` => `[ { "address": "asd", "balance": 10 } ]`.' nullable: true items: type: string values: type: array description: '**Values** selection mode. \ Specify a comma-separated list of fields to include their values into response. Example: `?select.values=address,balance` => `[ [ "asd", 10 ] ]`.' nullable: true items: type: string x-tzkt-extension: query-parameter x-generator: NSwag v14.2.0.0 (NJsonSchema v11.1.0.0 (Newtonsoft.Json v13.0.0.0)) x-tagGroups: - name: REST API tags: - Accounts - BigMaps - Blocks - Commitments - Constants - Contracts - Cycles - Delegates - Domains - Events - Head - Helpers - Operations - Protocols - Quotes - Rewards - Rights - SmartRollups - Software - Staking - Statistics - Tickets - Tokens - Voting - name: WebSocket API tags: - Get Started - Subscriptions - Examples - name: Libraries tags: - Typescript SDK - Taquito extension