Download OpenAPI specification:Download
Blockfrost is an API as a service that allows users to interact with the Cardano blockchain and parts of its ecosystem.
After signing up on https://blockfrost.io, a project_id
token is automatically generated for each project.
HTTP header of your request MUST include this project_id
in order to authenticate against Blockfrost servers.
At the moment, you can use the following networks. Please, note that each network has its own project_id
.
Network | Endpoint |
Cardano mainnet |
https://cardano-mainnet.blockfrost.io/api/v0
|
Cardano preprod |
https://cardano-preprod.blockfrost.io/api/v0
|
Cardano preview |
https://cardano-preview.blockfrost.io/api/v0
|
InterPlanetary File System |
https://ipfs.blockfrost.io/api/v0
|
Milkomeda mainnet |
https://milkomeda-mainnet.blockfrost.io/api/v0
|
Milkomeda testnet |
https://milkomeda-testnet.blockfrost.io/api/v0
|
For more information about how to use Milkomeda as well as the list of available endpoints, see the Milkomeda section.
?order=desc
query parameter to reverse this order.?page=2
to list through the results.server_time
) are in seconds of UNIX time.The following are HTTP status code your application might receive when reaching Blockfrost endpoints and it should handle all of these cases.
400
return code is used when the request is not valid.402
return code is used when the projects exceed their daily request limit.403
return code is used when the request is not authenticated.404
return code is used when the resource doesn't exist.418
return code is used when the user has been auto-banned for flooding too much after previously receiving error code 402
or 429
.425
return code is used in Cardano networks, when the user has submitted a transaction when the mempool is already full, not accepting new txs straight away.425
return code is used in IPFS network, when the user has submitted a pin when the pin queue is already full, not accepting new pins straight away.429
return code is used when the user has sent too many requests in a given amount of time and therefore has been rate-limited.500
return code is used when our endpoints are having a problem.An internal error code number is used for better indication of the error in question. It is passed using the following payload.
{
"status_code": 403,
"error": "Forbidden",
"message": "Invalid project token."
}
There are two types of limits we are enforcing:
The first depends on your plan and is the number of request we allow per day. We defined the day from midnight to midnight of UTC time.
The second is rate limiting. We limit an end user, distinguished by IP address, to 10 requests per second. On top of that, we allow each user to send burst of 500 requests, which cools off at rate of 10 requests per second. In essence, a user is allowed to make another whole burst after (currently) 500/10 = 50 seconds. E.g. if a user attempts to make a call 3 seconds after whole burst, 30 requests will be processed. We believe this should be sufficient for most of the use cases. If it is not and you have a specific use case, please get in touch with us, and we will make sure to take it into account as much as we can.
We support a number of SDKs that will help you in developing your application on top of Blockfrost.
Programming language | SDK |
JavaScript | blockfrost-js |
Haskell | blockfrost-haskell |
Python | blockfrost-python |
Rust | blockfrost-rust |
Golang | blockfrost-go |
Ruby | blockfrost-ruby |
Java | blockfrost-java |
Scala | blockfrost-scala |
Swift | blockfrost-swift |
Kotlin | blockfrost-kotlin |
Elixir | blockfrost-elixir |
.NET | blockfrost-dotnet |
Arduino | blockfrost-arduino |
PHP | blockfrost-php |
Crystal | blockfrost-crystal |
History of your Blockfrost usage metrics per endpoint in the past 30 days.
[- {
- "time": 1612543814,
- "calls": 182,
- "endpoint": "block"
}, - {
- "time": 1612543814,
- "calls": 42,
- "endpoint": "epoch"
}, - {
- "time": 1612543812,
- "calls": 775,
- "endpoint": "block"
}, - {
- "time": 1612523884,
- "calls": 4,
- "endpoint": "epoch"
}, - {
- "time": 1612553884,
- "calls": 89794,
- "endpoint": "block"
}
]
Obtain information about a specific stake account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
{- "stake_address": "stake1ux3g2c9dx2nhhehyrezyxpkstartcqmu9hk63qgfkccw5rqttygt7",
- "active": true,
- "active_epoch": 412,
- "controlled_amount": "619154618165",
- "rewards_sum": "319154618165",
- "withdrawals_sum": "12125369253",
- "reserves_sum": "319154618165",
- "treasury_sum": "12000000",
- "withdrawable_amount": "319154618165",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
}
Obtain information about the reward history of a specific account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "epoch": 215,
- "amount": "12695385",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "type": "member"
}, - {
- "epoch": 216,
- "amount": "3586329",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "type": "member"
}, - {
- "epoch": 217,
- "amount": "1",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "type": "member"
}, - {
- "epoch": 217,
- "amount": "1337",
- "pool_id": "pool1cytwr0n7eas6du2h2xshl8ypa1yqr18f0erlhhjcuczysiunjcs",
- "type": "leader"
}, - {
- "epoch": 218,
- "amount": "1395265",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "type": "member"
}, - {
- "epoch": 218,
- "amount": "500000000",
- "pool_id": "pool1cytwr0n7eas6du2h2xshl8ypa1yqr18f0erlhhjcuczysiunjcs",
- "type": "pool_deposit_refund"
}
]
Obtain information about the history of a specific account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "active_epoch": 210,
- "amount": "12695385",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
}, - {
- "active_epoch": 211,
- "amount": "22695385",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
}
]
Obtain information about the delegation of a specific account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "active_epoch": 210,
- "tx_hash": "2dd15e0ef6e6a17841cb9541c27724072ce4d4b79b91e58432fbaa32d9572531",
- "amount": "12695385",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy"
}, - {
- "active_epoch": 242,
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dde628516157f0",
- "amount": "12691385",
- "pool_id": "pool1kchver88u3kygsak8wgll7htr8uxn5v35lfrsyy842nkscrzyvj"
}
]
Obtain information about the registrations and deregistrations of a specific account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "2dd15e0ef6e6a17841cb9541c27724072ce4d4b79b91e58432fbaa32d9572531",
- "action": "registered"
}, - {
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dde628516157f0",
- "action": "deregistered"
}
]
Obtain information about the withdrawals of a specific account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "48a9625c841eea0dd2bb6cf551eabe6523b7290c9ce34be74eedef2dd8f7ecc5",
- "amount": "454541212442"
}, - {
- "tx_hash": "4230b0cbccf6f449f0847d8ad1d634a7a49df60d8c142bb8cc2dbc8ca03d9e34",
- "amount": "97846969"
}
]
Obtain information about the MIRs of a specific account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "69705bba1d687a816ff5a04ec0c358a1f1ef075ab7f9c6cc2763e792581cec6d",
- "amount": "2193707473"
}, - {
- "tx_hash": "baaa77b63d4d7d2bb3ab02c9b85978c2092c336dede7f59e31ad65452d510c13",
- "amount": "14520198574"
}
]
Obtain information about the addresses of a specific account. Be careful, as an account could be part of a mangled address and does not necessarily mean the addresses are owned by user as the account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "address": "addr1qx2kd28nq8ac5prwg32hhvudlwggpgfp8utlyqxu6wqgz62f79qsdmm5dsknt9ecr5w468r9ey0fxwkdrwh08ly3tu9sy0f4qd"
}, - {
- "address": "addr1qys3czp8s9thc6u2fqed9yq3h24nyw28uk0m6mkgn9dkckjf79qsdmm5dsknt9ecr5w468r9ey0fxwkdrwh08ly3tu9suth4w4"
}, - {
- "address": "addr1q8j55h253zcvl326sk5qdt2n8z7eghzspe0ekxgncr796s2f79qsdmm5dsknt9ecr5w468r9ey0fxwkdrwh08ly3tu9sjmd35m"
}, - {
- "address": "addr1q8f7gxrprank3drhx8k5grlux7ene0nlwun8y9thu8mc3yjf79qsdmm5dsknt9ecr5w468r9ey0fxwkdrwh08ly3tu9sls6vnt"
}
]
Obtain information about assets associated with addresses of a specific account. Be careful, as an account could be part of a mangled address and does not necessarily mean the addresses are owned by user as the account.
stake_address required | string Example: stake1u9ylzsgxaa6xctf4juup682ar3juj85n8tx3hthnljg47zctvm3rc Bech32 stake address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "unit": "d5e6bf0500378d4f0da4e8dde6becec7621cd8cbf5cbb9b87013d4cc537061636542756433343132",
- "quantity": "1"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "125"
}
]
Obtain summed details about all addresses associated with a given account. Be careful, as an account could be part of a mangled address and does not necessarily mean the addresses are owned by user as the account.
stake_address required | string Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
{- "stake_address": "stake1u9l5q5jwgelgagzyt6nuaasefgmn8pd25c8e9qpeprq0tdcp0e3uk",
- "received_sum": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "sent_sum": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "tx_count": 12
}
Obtain information about a specific address.
address required | string Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
{- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "stake_address": "stake1ux3g2c9dx2nhhehyrezyxpkstartcqmu9hk63qgfkccw5rqttygt7",
- "type": "shelley",
- "script": false
}
Obtain extended information about a specific address.
address required | string Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
{- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000",
- "decimals": 6,
- "has_nft_onchain_metadata": false
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12",
- "decimals": null,
- "has_nft_onchain_metadata": true
}
], - "stake_address": "stake1ux3g2c9dx2nhhehyrezyxpkstartcqmu9hk63qgfkccw5rqttygt7",
- "type": "shelley",
- "script": false
}
Obtain details about an address.
address required | string Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
{- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "received_sum": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "sent_sum": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "tx_count": 12
}
UTXOs of the address.
address required | string Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "tx_hash": "39a7a284c2a0948189dc45dec670211cd4d72f7b66c5726c08d9b3df11e44d58",
- "output_index": 0,
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}
], - "block": "7eb8e27d18686c7db9a18f8bbcfe34e3fed6e047afaa2d969904d15e934847e6",
- "data_hash": "9e478573ab81ea7a8e31891ce0648b81229f408d596a3483e6f4f9b92d3cf710",
- "inline_datum": null,
- "reference_script_hash": null
}, - {
- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "tx_hash": "4c4e67bafa15e742c13c592b65c8f74c769cd7d9af04c848099672d1ba391b49",
- "output_index": 0,
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "729235000"
}
], - "block": "953f1b80eb7c11a7ffcd67cbd4fde66e824a451aca5a4065725e5174b81685b7",
- "data_hash": null,
- "inline_datum": null,
- "reference_script_hash": null
}, - {
- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "tx_hash": "768c63e27a1c816a83dc7b07e78af673b2400de8849ea7e7b734ae1333d100d2",
- "output_index": 1,
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "block": "5c571f83fe6c784d3fbc223792627ccf0eea96773100f9aedecf8b1eda4544d7",
- "data_hash": null,
- "inline_datum": null,
- "reference_script_hash": null
}
]
UTXOs of the address.
address required | string Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
asset required | string Example: b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e Concatenation of the policy_id and hex-encoded asset_name |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "tx_hash": "39a7a284c2a0948189dc45dec670211cd4d72f7b66c5726c08d9b3df11e44d58",
- "output_index": 0,
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}
], - "block": "7eb8e27d18686c7db9a18f8bbcfe34e3fed6e047afaa2d969904d15e934847e6",
- "data_hash": "9e478573ab81ea7a8e31891ce0648b81229f408d596a3483e6f4f9b92d3cf710",
- "inline_datum": null,
- "reference_script_hash": null
}, - {
- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "tx_hash": "4c4e67bafa15e742c13c592b65c8f74c769cd7d9af04c848099672d1ba391b49",
- "output_index": 0,
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "729235000"
}
], - "block": "953f1b80eb7c11a7ffcd67cbd4fde66e824a451aca5a4065725e5174b81685b7",
- "data_hash": null,
- "inline_datum": null,
- "reference_script_hash": null
}, - {
- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "tx_hash": "768c63e27a1c816a83dc7b07e78af673b2400de8849ea7e7b734ae1333d100d2",
- "output_index": 1,
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "block": "5c571f83fe6c784d3fbc223792627ccf0eea96773100f9aedecf8b1eda4544d7",
- "data_hash": null,
- "inline_datum": null,
- "reference_script_hash": null
}
]
Transactions on the address.
address required | string Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
count | integer [ 1 .. 100 ] Default: 100 The number of transactions per page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- "2dd15e0ef6e6a17841cb9541c27724072ce4d4b79b91e58432fbaa32d9572531",
- "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dde628516157f0"
]
Transactions on the address.
address required | string Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
count | integer [ 1 .. 100 ] Default: 100 The number of addresses per page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
from | string Example: from=8929261 The block number and optionally also index from which (inclusive) to start search for results, concatenated using colon.
Has to be lower than or equal to |
to | string Example: to=9999269:10 The block number and optionally also index where (inclusive) to end the search for results, concatenated using colon.
Has to be higher than or equal to |
[- {
- "tx_hash": "8788591983aa73981fc92d6cddbbe643959f5a784e84b8bee0db15823f575a5b",
- "tx_index": 6,
- "block_height": 69,
- "block_time": 1635505891
}, - {
- "tx_hash": "52e748c4dec58b687b90b0b40d383b9fe1f24c1a833b7395cdf07dd67859f46f",
- "tx_index": 9,
- "block_height": 4547,
- "block_time": 1635505987
}, - {
- "tx_hash": "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b",
- "tx_index": 0,
- "block_height": 564654,
- "block_time": 1834505492
}
]
List of assets. If an asset is completely burned, it will stay on the list with quantity 0 (order of assets is immutable).
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. Ordering in this case is based on the time of the first mint transaction. |
[- {
- "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "1"
}, - {
- "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e75d",
- "quantity": "100000"
}, - {
- "asset": "6804edf9712d2b619edb6ac86861fe93a730693183a262b165fcc1ba1bc99cad",
- "quantity": "18605647"
}
]
Information about a specific asset
asset required | string Example: b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e Concatenation of the policy_id and hex-encoded asset_name |
{- "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "policy_id": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a7",
- "asset_name": "6e7574636f696e",
- "fingerprint": "asset1pkpwyknlvul7az0xx8czhl60pyel45rpje4z8w",
- "quantity": "12000",
- "initial_mint_tx_hash": "6804edf9712d2b619edb6ac86861fe93a730693183a262b165fcc1ba1bc99cad",
- "mint_or_burn_count": 1,
- "onchain_metadata": { },
- "onchain_metadata_standard": "CIP25v1",
- "onchain_metadata_extra": "string",
- "metadata": {
- "name": "nutcoin",
- "description": "The Nut Coin",
- "ticker": "nutc",
- "logo": "iVBORw0KGgoAAAANSUhEUgAAADAAAAAoCAYAAAC4h3lxAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAAB3RJTUUH5QITCDUPjqwFHwAAB9xJREFUWMPVWXtsU9cZ/8499/r6dZ3E9rUdO7ZDEgglFWO8KaOsJW0pCLRKrN1AqqYVkqoqrYo0ja7bpElru1WairStFKY9WzaE1E1tx+jokKqwtqFNyhKahEJJyJNgJ37E9r1+3HvO/sFR4vhx7SBtfH/F3/l93/f7ne/4PBxEKYU72dj/ZfH772v1TU+HtqbTaX8wOO01GPQpRVH7JEm+vGHDuq6z7/8jUSoHKtaBKkEUFUXdajDy1hUrmrs6zn/wWS7m7pZVjMUirKGUTnzc+e9xLcTrPPVfZzDz06Sc2lyQGEIyAPzT7Xa+dvE/3e+XLaCxoflHsVj8MAAYs74aa/WHoenwvpkZKeFy2Z5NJlOPUkqXZccFwSSrKjlyffjLH+TL6XTUGTGL/6hklD3ldIrj2M5MRmkLBMcvaRLQ1Nj88sxM/HCBfMP+eu/OYGDqe6l0WmpoqJ/88upgrU7HrQNA/cFg6MlkKiLlBtVUO40cx54BgHvLIT/HJLvdeqh/4NKxogKWN7fsCoUi7xTLxLJ4vLq6ak//wKVOrdXtttrTDMPsqJA8AAAwDErdu3VL3alTf5ma9eWCpoKhn5dKpCiqJxicPucQPVu0FHaInn35yHMcKwPAa4SQ3QCwFgDWUko3qSr5vqqSgTypuEg4Mo/zvA74/Y0rZSnZU8akSHV17k2fXfy0txjI5224kEym1s/1EUI7LBbztweHrkzkizn49LP6U6feepFSeggAQK/n04SQZ8bGrxdeQjZrbRvGzLH5hcibRqOhPplMfS1fIY5jz4xPDBdcGggho2h3z9sOLRazdG3wqp9SMgUlzGZ17SSEPsRx7J8CwfGu3PF57WhqqjfN/VxVJUxKUrIdITAXKpDJKFscosdfaFy0u+/K9aXTmXe0kAcAmA5Nng5Hbj6Tj/wCAYFAcN7uEY3GXGazMSHLqVVFapgBoMPna9yqhRAAgCTJMa3YUjZPgNFkSlWYx5eUkx+0tKx83V3rF+cVYJjruWCe133DIXqMmrNrFSDabRcWkywYmG5XFOW6aHcfb9324CoAgMmbo9MIoXkneCajiAihV/c/8eSiBSw4BxyiZxQA6m7H7FBKT2CMn2MY5jFFUX6ZO+5w2j8aHZ7YH40FByrJD5DnHGAY5uTtIA8AgBDaR4F2Yxb3WizCgmtA4ObUPSazodduqz3Suu0hf0U1cjvgdNSJ1dWWveFwdDUAtAiC2Uopdcdi8c9Zlh3GmDGl05mtAKAvo47EcdwThJCjqqpWFxALlNITomg73tff21GRAJez7iVK4WGGYfoJIQduBsbm7UrLm1ueCoUiv65kpiilw1ZbzcFoZOYoIcRTAn6eYZgXJm+Oni+Vd3YJbdyweSch9HlK6SpVVfcyDDq7Yf3m2XPBIXraKyV/a4b9UkLawbLsZgB4rwR8CyGkw13r+5fX27BckwBAEJ47oKpk8+DgUIdod7fV1vqOAMDrlZLPmqKoB+rrvXIgOP6w0WjYy3Ls5RL4bUk52bVm9fqnCk7M3CXU2ND8+MxM7BcIIftiyRYyntcdHh0bmr0wfmXl6p2SJB2KRmP3l4j7zejYUFtRAQAAgslm1Bv4nyGEDpYiIwjmjw0G/RjP866JiclNqqqWfKLq9fyZkdHBBXcnl9O71GDgD8bj0ncRQqZ8sRgzL9yYHH2pqICsOUTPLgA4CXNeZFmzWIS/YhYfjUZmvqPjuceSckrz25pS2h2cmlhbaBwhzr6kfsnL8Xhif55YYFl23Y3Jkdl7EVMoUSA4/q6qqNsBIPd11e52u45FwtG3CSH7yiEPAGC1Vt9dXGBmanDoygFLlbAjtzZCCMyC6VeaOpA1l9N7l1kwtauKaozHE28YTQaQpeR7+TqjxXheR0fHhhgt2CX1S3clEtKC16HL5djYe+niBU0CcmYA2W21/Qih5ZqDcoxlMZ24MaJJAABA87IVJ8Lh6N65Pr1B/+LIyLUfAhRZQvnM6ah7ZDHkAQB0vK6/HHxNTc2ruT5Zkldn/y5LACFk+2LIAwAwCGl6yGSt88KHXbmrBCHkqEgAz+vWLFZALJb4qNwYhFDhCSknkSwnQ4sVgDFeWg7+gQe2r1tAmkGTFQlACHWVg89nhJA9ot3dphV/eeCLp/Pw6K5IQP0S39uLFXCLwDG7zf1cKZxD9LSlUunHc/12u/2t2Vzl/rzu8zb8PZlM7bwdQgDgPK/nX2nddt+53//ht3LW2dS0fF0iLj2vquojuQFmwXRucPBKa8UCmpe1iOFwpAsAfLdJBFBKwVIlXJ2JxqKCxbwyHkvoCkAlv9/71U+7Oq+UJWDZ0hViJBL1cRynbNq0sSeeiPl6ei4NqIqq6TSmlB7X6bjuTEY5pgWfzwxGPZhMpt39/b3vzvWXFGCzulZjjM/DrauDwcAr8bjcgzGjZUuVBMH8k2uDX7wCAFDr8n2LEPI7SqmhTP6SzVbz6MDlz0/nDpT8EmOM22HOvUeWU2wp8iyLgRL6hk7Hrc2SBwC4MTlykmXZRozxn00mbVcphNA5jJmV+chr6oDd5l6jN/A/TqfSuwEAGITGMIsvGo3GTwTB3Dc2NjGSxdZYq4VIOOoNBANnKE0XPXE3brjHOTQ08k2MmVZOxzVJCbkFIQSCYEphzPaFQuGzTpfjb319PZ8UFXin/5OvrHPg/9HueAH/BSUqOuNZm4fyAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIxLTAyLTE5VDA4OjUyOjI1KzAwOjAwCmFGlgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMS0wMi0xOVQwODo1MjoyMyswMDowMBjsyxAAAAAASUVORK5CYII=",
- "decimals": 6
}
}
History of a specific asset
asset required | string Example: b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e Concatenation of the policy_id and hex-encoded asset_name |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "2dd15e0ef6e6a17841cb9541c27724072ce4d4b79b91e58432fbaa32d9572531",
- "amount": "10",
- "action": "minted"
}, - {
- "tx_hash": "9c190bc1ac88b2ab0c05a82d7de8b71b67a9316377e865748a89d4426c0d3005",
- "amount": "5",
- "action": "burned"
}, - {
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dde628516157f0",
- "amount": "5",
- "action": "burned"
}
]
List of a specific asset transactions
asset required | string Example: b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e Concatenation of the policy_id and hex-encoded asset_name |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- "8788591983aa73981fc92d6cddbbe643959f5a784e84b8bee0db15823f575a5b",
- "52e748c4dec58b687b90b0b40d383b9fe1f24c1a833b7395cdf07dd67859f46f",
- "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b"
]
List of a specific asset transactions
asset required | string Example: b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e Concatenation of the policy_id and hex-encoded asset_name |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "8788591983aa73981fc92d6cddbbe643959f5a784e84b8bee0db15823f575a5b",
- "tx_index": 6,
- "block_height": 69,
- "block_time": 1635505891
}, - {
- "tx_hash": "52e748c4dec58b687b90b0b40d383b9fe1f24c1a833b7395cdf07dd67859f46f",
- "tx_index": 9,
- "block_height": 4547,
- "block_time": 1635505987
}, - {
- "tx_hash": "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b",
- "tx_index": 0,
- "block_height": 564654,
- "block_time": 1834505492
}
]
List of a addresses containing a specific asset
asset required | string Example: b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e Concatenation of the policy_id and hex-encoded asset_name |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "quantity": "1"
}, - {
- "address": "addr1qyhr4exrgavdcn3qhfcc9f939fzsch2re5ry9cwvcdyh4x4re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qdpvhza",
- "quantity": "100000"
}, - {
- "address": "addr1q8zup8m9ue3p98kxlxl9q8rnyan8hw3ul282tsl9s326dfj088lvedv4zckcj24arcpasr0gua4c5gq4zw2rpcpjk2lq8cmd9l",
- "quantity": "18605647"
}
]
List of asset minted under a specific policy
policy_id required | string Example: 476039a0949cf0b22f6a800f56780184c44533887ca6e821007840c3 Specific policy_id |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "1"
}, - {
- "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a766e",
- "quantity": "100000"
}, - {
- "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb574636f696e",
- "quantity": "18605647"
}
]
Return the latest block available to the backends, also known as the tip of the blockchain.
{- "time": 1641338934,
- "height": 15243593,
- "hash": "4ea1ba291e8eef538635a53e59fddba7810d1679631cc3aed7c8e6c4091a516a",
- "slot": 412162133,
- "epoch": 425,
- "epoch_slot": 12,
- "slot_leader": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2qnikdy",
- "size": 3,
- "tx_count": 1,
- "output": "128314491794",
- "fees": "592661",
- "block_vrf": "vrf_vk1wf2k6lhujezqcfe00l6zetxpnmh9n6mwhpmhm0dvfh3fxgmdnrfqkms8ty",
- "op_cert": "da905277534faf75dae41732650568af545134ee08a3c0392dbefc8096ae177c",
- "op_cert_counter": "18",
- "previous_block": "43ebccb3ac72c7cebd0d9b755a4b08412c9f5dcb81b8a0ad1e3c197d29d47b05",
- "next_block": "8367f026cf4b03e116ff8ee5daf149b55ba5a6ec6dec04803b8dc317721d15fa",
- "confirmations": 4698
}
Return the transactions within the latest block.
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" Ordered by tx index in the block. The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- "8788591983aa73981fc92d6cddbbe643959f5a784e84b8bee0db15823f575a5b",
- "4eef6bb7755d8afbeac526b799f3e32a624691d166657e9d862aaeb66682c036",
- "52e748c4dec58b687b90b0b40d383b9fe1f24c1a833b7395cdf07dd67859f46f",
- "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b"
]
Return the content of a requested block.
hash_or_number required | string <64-character case-sensitive hexadecimal string or block number.> Example: 4ea1ba291e8eef538635a53e59fddba7810d1679631cc3aed7c8e6c4091a516a Hash or number of the requested block. |
{- "time": 1641338934,
- "height": 15243593,
- "hash": "4ea1ba291e8eef538635a53e59fddba7810d1679631cc3aed7c8e6c4091a516a",
- "slot": 412162133,
- "epoch": 425,
- "epoch_slot": 12,
- "slot_leader": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2qnikdy",
- "size": 3,
- "tx_count": 1,
- "output": "128314491794",
- "fees": "592661",
- "block_vrf": "vrf_vk1wf2k6lhujezqcfe00l6zetxpnmh9n6mwhpmhm0dvfh3fxgmdnrfqkms8ty",
- "op_cert": "da905277534faf75dae41732650568af545134ee08a3c0392dbefc8096ae177c",
- "op_cert_counter": "18",
- "previous_block": "43ebccb3ac72c7cebd0d9b755a4b08412c9f5dcb81b8a0ad1e3c197d29d47b05",
- "next_block": "8367f026cf4b03e116ff8ee5daf149b55ba5a6ec6dec04803b8dc317721d15fa",
- "confirmations": 4698
}
Return the list of blocks following a specific block.
hash_or_number required | string <64-character case-sensitive hexadecimal string or block number.> Example: 5ea1ba291e8eef538635a53e59fddba7810d1679631cc3aed7c8e6c4091a516a Hash of the requested block. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
[- {
- "time": 1641338934,
- "height": 15243593,
- "hash": "4ea1ba291e8eef538635a53e59fddba7810d1679631cc3aed7c8e6c4091a516a",
- "slot": 412162133,
- "epoch": 425,
- "epoch_slot": 12,
- "slot_leader": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2qnikdy",
- "size": 3,
- "tx_count": 1,
- "output": "128314491794",
- "fees": "592661",
- "block_vrf": "vrf_vk1wf2k6lhujezqcfe00l6zetxpnmh9n6mwhpmhm0dvfh3fxgmdnrfqkms8ty",
- "op_cert": "da905277534faf75dae41732650568af545134ee08a3c0392dbefc8096ae177c",
- "op_cert_counter": "18",
- "previous_block": "43ebccb3ac72c7cebd0d9b755a4b08412c9f5dcb81b8a0ad1e3c197d29d47b05",
- "next_block": "8367f026cf4b03e116ff8ee5daf149b55ba5a6ec6dec04803b8dc317721d15fa",
- "confirmations": 4698
}
]
Return the list of blocks preceding a specific block.
hash_or_number required | string <64-character case-sensitive hexadecimal string or block number.> Example: 4873401 Hash of the requested block |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
[- {
- "time": 1641338934,
- "height": 15243593,
- "hash": "4ea1ba291e8eef538635a53e59fddba7810d1679631cc3aed7c8e6c4091a516a",
- "slot": 412162133,
- "epoch": 425,
- "epoch_slot": 12,
- "slot_leader": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2qnikdy",
- "size": 3,
- "tx_count": 1,
- "output": "128314491794",
- "fees": "592661",
- "block_vrf": "vrf_vk1wf2k6lhujezqcfe00l6zetxpnmh9n6mwhpmhm0dvfh3fxgmdnrfqkms8ty",
- "op_cert": "da905277534faf75dae41732650568af545134ee08a3c0392dbefc8096ae177c",
- "op_cert_counter": "18",
- "previous_block": "43ebccb3ac72c7cebd0d9b755a4b08412c9f5dcb81b8a0ad1e3c197d29d47b05",
- "next_block": "8367f026cf4b03e116ff8ee5daf149b55ba5a6ec6dec04803b8dc317721d15fa",
- "confirmations": 4698
}
]
Return the content of a requested block for a specific slot.
slot_number required | integer <slot number> Example: 30895909 Slot position for requested block. |
{- "time": 1641338934,
- "height": 15243593,
- "hash": "4ea1ba291e8eef538635a53e59fddba7810d1679631cc3aed7c8e6c4091a516a",
- "slot": 412162133,
- "epoch": 425,
- "epoch_slot": 12,
- "slot_leader": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2qnikdy",
- "size": 3,
- "tx_count": 1,
- "output": "128314491794",
- "fees": "592661",
- "block_vrf": "vrf_vk1wf2k6lhujezqcfe00l6zetxpnmh9n6mwhpmhm0dvfh3fxgmdnrfqkms8ty",
- "op_cert": "da905277534faf75dae41732650568af545134ee08a3c0392dbefc8096ae177c",
- "op_cert_counter": "18",
- "previous_block": "43ebccb3ac72c7cebd0d9b755a4b08412c9f5dcb81b8a0ad1e3c197d29d47b05",
- "next_block": "8367f026cf4b03e116ff8ee5daf149b55ba5a6ec6dec04803b8dc317721d15fa",
- "confirmations": 4698
}
Return the content of a requested block for a specific slot in an epoch.
epoch_number required | integer <slot number> Example: 219 Epoch for specific epoch slot. |
slot_number required | integer <slot number> Example: 30895909 Slot position for requested block. |
{- "time": 1641338934,
- "height": 15243593,
- "hash": "4ea1ba291e8eef538635a53e59fddba7810d1679631cc3aed7c8e6c4091a516a",
- "slot": 412162133,
- "epoch": 425,
- "epoch_slot": 12,
- "slot_leader": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2qnikdy",
- "size": 3,
- "tx_count": 1,
- "output": "128314491794",
- "fees": "592661",
- "block_vrf": "vrf_vk1wf2k6lhujezqcfe00l6zetxpnmh9n6mwhpmhm0dvfh3fxgmdnrfqkms8ty",
- "op_cert": "da905277534faf75dae41732650568af545134ee08a3c0392dbefc8096ae177c",
- "op_cert_counter": "18",
- "previous_block": "43ebccb3ac72c7cebd0d9b755a4b08412c9f5dcb81b8a0ad1e3c197d29d47b05",
- "next_block": "8367f026cf4b03e116ff8ee5daf149b55ba5a6ec6dec04803b8dc317721d15fa",
- "confirmations": 4698
}
Return the transactions within the block.
hash_or_number required | string <64-character case-sensitive hexadecimal string or block number.> Example: 4873401 Hash of the requested block. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" Ordered by tx index in the block. The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- "8788591983aa73981fc92d6cddbbe643959f5a784e84b8bee0db15823f575a5b",
- "4eef6bb7755d8afbeac526b799f3e32a624691d166657e9d862aaeb66682c036",
- "52e748c4dec58b687b90b0b40d383b9fe1f24c1a833b7395cdf07dd67859f46f",
- "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b"
]
Return list of addresses affected in the specified block with additional information, sorted by the bech32 address, ascending.
hash_or_number required | string <64-character case-sensitive hexadecimal string or block number.> Example: 4873401 Hash of the requested block. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
[- {
- "address": "addr1q9ld26v2lv8wvrxxmvg90pn8n8n5k6tdst06q2s856rwmvnueldzuuqmnsye359fqrk8hwvenjnqultn7djtrlft7jnq7dy7wv",
- "transactions": [
- {
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dce628516157f0"
}
]
}, - {
- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "transactions": [
- {
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dce628516157d0"
}
]
}
]
Return the information about the latest, therefore current, epoch.
{- "epoch": 225,
- "start_time": 1603403091,
- "end_time": 1603835086,
- "first_block_time": 1603403092,
- "last_block_time": 1603835084,
- "block_count": 21298,
- "tx_count": 17856,
- "output": "7849943934049314",
- "fees": "4203312194",
- "active_stake": "784953934049314"
}
Return the protocol parameters for the latest epoch.
{- "epoch": 225,
- "min_fee_a": 44,
- "min_fee_b": 155381,
- "max_block_size": 65536,
- "max_tx_size": 16384,
- "max_block_header_size": 1100,
- "key_deposit": "2000000",
- "pool_deposit": "500000000",
- "e_max": 18,
- "n_opt": 150,
- "a0": 0.3,
- "rho": 0.003,
- "tau": 0.2,
- "decentralisation_param": 0.5,
- "extra_entropy": null,
- "protocol_major_ver": 2,
- "protocol_minor_ver": 0,
- "min_utxo": "1000000",
- "min_pool_cost": "340000000",
- "nonce": "1a3be38bcbb7911969283716ad7aa550250226b76a61fc51cc9a9a35d9276d81",
- "cost_models": {
- "PlutusV1": {
- "addInteger-cpu-arguments-intercept": 197209,
- "addInteger-cpu-arguments-slope": 0
}, - "PlutusV2": {
- "addInteger-cpu-arguments-intercept": 197209,
- "addInteger-cpu-arguments-slope": 0
}
}, - "price_mem": 0.0577,
- "price_step": 0.0000721,
- "max_tx_ex_mem": "10000000",
- "max_tx_ex_steps": "10000000000",
- "max_block_ex_mem": "50000000",
- "max_block_ex_steps": "40000000000",
- "max_val_size": "5000",
- "collateral_percent": 150,
- "max_collateral_inputs": 3,
- "coins_per_utxo_size": "34482",
- "coins_per_utxo_word": "34482"
}
Return the content of the requested epoch.
number required | integer Example: 225 Number of the epoch |
{- "epoch": 225,
- "start_time": 1603403091,
- "end_time": 1603835086,
- "first_block_time": 1603403092,
- "last_block_time": 1603835084,
- "block_count": 21298,
- "tx_count": 17856,
- "output": "7849943934049314",
- "fees": "4203312194",
- "active_stake": "784953934049314"
}
Return the list of epochs following a specific epoch.
number required | integer Example: 225 Number of the requested epoch. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
[- {
- "epoch": 225,
- "start_time": 1603403091,
- "end_time": 1603835086,
- "first_block_time": 1603403092,
- "last_block_time": 1603835084,
- "block_count": 21298,
- "tx_count": 17856,
- "output": "7849943934049314",
- "fees": "4203312194",
- "active_stake": "784953934049314"
}
]
Return the list of epochs preceding a specific epoch.
number required | integer Example: 225 Number of the epoch |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results |
[- {
- "epoch": 225,
- "start_time": 1603403091,
- "end_time": 1603835086,
- "first_block_time": 1603403092,
- "last_block_time": 1603835084,
- "block_count": 21298,
- "tx_count": 17856,
- "output": "7849943934049314",
- "fees": "4203312194",
- "active_stake": "784953934049314"
}
]
Return the active stake distribution for the specified epoch.
number required | integer Example: 225 Number of the epoch |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
[- {
- "stake_address": "stake1u9l5q5jwgelgagzyt6nuaasefgmn8pd25c8e9qpeprq0tdcp0e3uk",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "amount": "4440295078"
}
]
Return the active stake distribution for the epoch specified by stake pool.
number required | integer Example: 225 Number of the epoch |
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Stake pool ID to filter |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
[- {
- "stake_address": "stake1u9l5q5jwgelgagzyt6nuaasefgmn8pd25c8e9qpeprq0tdcp0e3uk",
- "amount": "4440295078"
}
]
Return the blocks minted for the epoch specified.
number required | integer Example: 225 Number of the epoch |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- "d0fa315687e99ccdc96b14cc2ea74a767405d64427b648c470731a9b69e4606e",
- "38bc6efb92a830a0ed22a64f979d120d26483fd3c811f6622a8c62175f530878",
- "f3258fcd8b975c061b4fcdcfcbb438807134d6961ec278c200151274893b6b7d"
]
Return the block minted for the epoch specified by stake pool.
number required | integer Example: 225 Number of the epoch |
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Stake pool ID to filter |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- "d0fa315687e99ccdc96b14cc2ea74a767405d64427b648c470731a9b69e4606e",
- "38bc6efb92a830a0ed22a64f979d120d26483fd3c811f6622a8c62175f530878",
- "f3258fcd8b975c061b4fcdcfcbb438807134d6961ec278c200151274893b6b7d"
]
Return the protocol parameters for the epoch specified.
number required | integer Example: 225 Number of the epoch |
{- "epoch": 225,
- "min_fee_a": 44,
- "min_fee_b": 155381,
- "max_block_size": 65536,
- "max_tx_size": 16384,
- "max_block_header_size": 1100,
- "key_deposit": "2000000",
- "pool_deposit": "500000000",
- "e_max": 18,
- "n_opt": 150,
- "a0": 0.3,
- "rho": 0.003,
- "tau": 0.2,
- "decentralisation_param": 0.5,
- "extra_entropy": null,
- "protocol_major_ver": 2,
- "protocol_minor_ver": 0,
- "min_utxo": "1000000",
- "min_pool_cost": "340000000",
- "nonce": "1a3be38bcbb7911969283716ad7aa550250226b76a61fc51cc9a9a35d9276d81",
- "cost_models": {
- "PlutusV1": {
- "addInteger-cpu-arguments-intercept": 197209,
- "addInteger-cpu-arguments-slope": 0
}, - "PlutusV2": {
- "addInteger-cpu-arguments-intercept": 197209,
- "addInteger-cpu-arguments-slope": 0
}
}, - "price_mem": 0.0577,
- "price_step": 0.0000721,
- "max_tx_ex_mem": "10000000",
- "max_tx_ex_steps": "10000000000",
- "max_block_ex_mem": "50000000",
- "max_block_ex_steps": "40000000000",
- "max_val_size": "5000",
- "collateral_percent": 150,
- "max_collateral_inputs": 3,
- "coins_per_utxo_size": "34482",
- "coins_per_utxo_word": "34482"
}
Return the information about blockchain genesis.
{- "active_slots_coefficient": 0.05,
- "update_quorum": 5,
- "max_lovelace_supply": "45000000000000000",
- "network_magic": 764824073,
- "epoch_length": 432000,
- "system_start": 1506203091,
- "slots_per_kes_period": 129600,
- "slot_length": 1,
- "max_kes_evolutions": 62,
- "security_param": 2160
}
Return transactions that are currently stored in Blockfrost mempool, waiting to be included in a newly minted block. Shows only transactions submitted via Blockfrost.io.
Hosted Endpoint only available for hosted variant.
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" Ordered by the time of transaction submission. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dce628516157f0"
}
]
Return content of the requested transaction.
Hosted Endpoint only available for hosted variant.
hash required | string <64-character case-sensitive hexadecimal string.> Example: 6e5f825c42c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction |
{- "tx": {
- "hash": "1e043f100dce12d107f679685acd2fc0610e10f72a92d412794c9773d11d8477",
- "output_amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "fees": "182485",
- "deposit": "0",
- "size": 433,
- "invalid_before": null,
- "invalid_hereafter": "13885913",
- "utxo_count": 4,
- "withdrawal_count": 0,
- "mir_cert_count": 0,
- "delegation_count": 0,
- "stake_cert_count": 0,
- "pool_update_count": 0,
- "pool_retire_count": 0,
- "asset_mint_or_burn_count": 0,
- "redeemer_count": 0,
- "valid_contract": true
}, - "inputs": [
- {
- "address": "addr1q9ld26v2lv8wvrxxmvg90pn8n8n5k6tdst06q2s856rwmvnueldzuuqmnsye359fqrk8hwvenjnqultn7djtrlft7jnq7dy7wv",
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dce628516157f0",
- "output_index": 0,
- "collateral": false,
- "reference": false
}
], - "outputs": [
- {
- "address": "addr1q9ld26v2lv8wvrxxmvg90pn8n8n5k6tdst06q2s856rwmvnueldzuuqmnsye359fqrk8hwvenjnqultn7djtrlft7jnq7dy7wv",
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "output_index": 0,
- "data_hash": "9e478573ab81ea7a8e31891ce0648b81229f408d596a3483e6f4f9b92d3cf710",
- "inline_datum": "19a6aa",
- "collateral": false,
- "reference_script_hash": "13a3efd825703a352a8f71f4e2758d08c28c564e8dfcce9f77776ad1"
}
], - "redeemers": [
- {
- "tx_index": 0,
- "purpose": "spend",
- "unit_mem": "1700",
- "unit_steps": "476468"
}
]
}
List of mempool transactions where at least one of the transaction inputs or outputs belongs to the address. Shows only transactions submitted via Blockfrost.io.
Hosted Endpoint only available for hosted variant.
address required | string <64-character case-sensitive hexadecimal string.> Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz Bech32 address. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" Ordered by the time of transaction submission. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dce628516157f0"
}
]
List of all used transaction metadata labels.
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "label": "1990",
- "cip10": null,
- "count": "1"
}, - {
- "label": "1967",
- "cip10": "nut.link metadata oracles registry",
- "count": "3"
}, - {
- "label": "1968",
- "cip10": "nut.link metadata oracles data points",
- "count": "16321"
}
]
Transaction metadata per label.
label required | string Example: 1990 Metadata label |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "257d75c8ddb0434e9b63e29ebb6241add2b835a307aa33aedba2effe09ed4ec8",
- "json_metadata": {
- "ADAUSD": [
- {
- "value": "0.10409800535729975",
- "source": "ergoOracles"
}
]
}
}, - {
- "tx_hash": "e865f2cc01ca7381cf98dcdc4de07a5e8674b8ea16e6a18e3ed60c186fde2b9c",
- "json_metadata": {
- "ADAUSD": [
- {
- "value": "0.15409850555139935",
- "source": "ergoOracles"
}
]
}
}, - {
- "tx_hash": "4237501da3cfdd53ade91e8911e764bd0699d88fd43b12f44a1f459b89bc91be",
- "json_metadata": null
}
]
Transaction metadata per label.
label required | string Example: 1990 Metadata label |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "257d75c8ddb0434e9b63e29ebb6241add2b835a307aa33aedba2effe09ed4ec8",
- "cbor_metadata": null,
- "metadata": null
}, - {
- "tx_hash": "e865f2cc01ca7381cf98dcdc4de07a5e8674b8ea16e6a18e3ed60c186fde2b9c",
- "cbor_metadata": null,
- "metadata": null
}, - {
- "tx_hash": "4237501da3cfdd53ade91e8911e764bd0699d88fd43b12f44a1f459b89bc91be",
- "cbor_metadata": "\\xa100a16b436f6d62696e6174696f6e8601010101010c",
- "metadata": "a100a16b436f6d62696e6174696f6e8601010101010c"
}
]
Mithril integration allows you to leverage the capabilities of the Mithril Aggregator API without needing to interact with multiple APIs, simplifying the development process and enhancing usability.
Please note that the integration of Mithril is experimental. Blockfrost acts as a proxy for the subset of Mithril API endpoints. The format of the Mithril API may change independently of the core Blockfrost API.
All Mithril endpoints are accessible under the /mithril
path.
For example, to retrieve a snapshot artifact of the cardano mainnet, you would use:
https://cardano-mainnet.blockfrost.io/api/v0/mithril/artifact/snapshot/{digest}
In addition to error responses listed in Mithril endpoints (such as 404
, 412
and 500
), the API may also return error responses related to Blockfrost (e.g. 400
for invalid path or 403
for unauthenticated request). For the full list of Blockfrost error status codes, please see Blockfrost Errors.
For more information about how to use Mithril API, please see the Mithril docs.
Returns the specifications related to the aggregator:
{- "open_api_version": "0.1.17",
- "capabilities": {
- "signed_entity_types": [
- "MithrilStakeDistribution",
- "CardanoImmutableFilesFull",
- "CardanoTransactions"
]
}
}
Returns the information related to the current epoch:
{- "epoch": 329,
- "protocol": {
- "k": 857,
- "m": 6172,
- "phi_f": 0.2
}, - "next_protocol": {
- "k": 2422,
- "m": 20973,
- "phi_f": 0.2
}
}
Returns the information related to the current pending certificate:
{- "epoch": 329,
- "beacon": {
- "network": "mainnet",
- "epoch": 329,
- "immutable_file_number": 7060000
}, - "entity_type": {
- "MithrilStakeDistribution": 246
}, - "protocol": {
- "k": 857,
- "m": 6172,
- "phi_f": 0.2
}, - "next_protocol": {
- "k": 2422,
- "m": 20973,
- "phi_f": 0.2
}, - "signers": [
- {
- "party_id": "1234567890",
- "verification_key": "7b12766b223a5c342b39302c32392c39392c39382c3131313138342c32252c32352c31353",
- "verification_key_signature": "7b5473693727369676d61223a7b227369676d6d61223a7b261223a9b227369676d61213a",
- "operational_certificate": "5b73136372c38302c37342c3136362c313535b5b3232352c3230332c3235352c313030262c38322c39382c32c39332c3138342c3135362c3136362c32312c3131312c3232312c36332c3137372c3232332c3232332c31392c3537",
- "kes_period": 123
}, - {
- "party_id": "2345678900",
- "verification_key": "7b392c39392c13131312766b223a5c39382c313342b39302c252c32352c31353328342c32",
- "verification_key_signature": "2c33302c3133312c3138322c34362c3133352c372c3139302c3235322c35352c32322c39",
- "operational_certificate": "3231342c3137372c37312c3232352c3233332c3135335d2c322c3139322c5b3133352c34312c3230332c3131332c3c33352c3234302c3230392c312c32392c3233332c33342c3138382c3134312c3130342c3234382c3231392c3",
- "kes_period": 456
}
], - "next_signers": [
- {
- "party_id": "3456789000",
- "verification_key": "7b22766b223a5b3133382c32392c3137332c3134342c36332c3233352c39372c3138302c3",
- "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d612239",
- "operational_certificate": "5b5b5b3232352c3230332c3235352c3130302c3136372c38302c37342c3136362c3135362c38322c39382c3232312c36332c3137372c3232332c3232332c31392c35372c39332c312c35302c3133392c3233342c3137332c32352",
- "kes_period": 789
}, - {
- "party_id": "4567890000",
- "verification_key": "34302c3132332c3139302c3134352c3132342c35342c3133302c37302c3136332c3139332",
- "verification_key_signature": "302c3230312c38362c3139312c36302c3234352c3138332c3134342c3139392c3130335f",
- "operational_certificate": "2c38382c3138372c3233332c34302c37322c31362c36365d2c312c3132332c5b31362c3136392c3134312c3138332c32322c3137342c3131312c33322c36342c35322c2c3232382c37392c3137352c32395312c3838282c323030",
- "kes_period": 876
}
]
}
Returns the list of the most recent certificates
[- {
- "hash": "9dc998101590f733f7a50e7c03b5b336e69a751cc02d811395d49618db3ba3d7",
- "previous_hash": "aa2ddfb87a17103bdf15bfb21a2941b3f3223a3c8d710910496c392b14f8c403",
- "epoch": 329,
- "beacon": {
- "network": "mainnet",
- "epoch": 329,
- "immutable_file_number": 7060000
}, - "signed_entity_type": {
- "MithrilStakeDistribution": 246
}, - "metadata": {
- "network": "mainnet",
- "version": "0.1.0",
- "parameters": {
- "k": 5,
- "m": 100,
- "phi_f": 0.65
}, - "initiated_at": "2022-07-17T18:51:23.192811338Z",
- "sealed_at": "2022-07-17T18:51:35.830832580Z",
- "total_signers": 3
}, - "protocol_message": {
- "message_parts": {
- "snapshot_digest": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "next_aggregate_verification_key": "b132362c3232352c36392c31373133352c31323235392c3235332c3233342c34226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33382c3382c3138322c3231322c2c363"
}
}, - "signed_message": "07ed7c9e128744c1a4797b7eb34c54823cc7a21fc95c19876122ab4bb0fe796d6bba2bc",
- "aggregate_verification_key": "7b232392c3130342c34392c35312c3130332c3136352c37364223a7b22726f6f74223a5b3137392c3135312c3135382c37332c37372c2c3135392c3226d745f636f6d6d69746d656e7"
}
]
Returns the certificate identified by its hash
certificate_hash required | string <bytes> Example: 7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572 Hash of the certificate to retrieve |
{- "hash": "9dc998101590f733f7a50e7c03b5b336e69a751cc02d811395d49618db3ba3d7",
- "previous_hash": "aa2ddfb87a17103bdf15bfb21a2941b3f3223a3c8d710910496c392b14f8c403",
- "epoch": 329,
- "beacon": {
- "network": "mainnet",
- "epoch": 329,
- "immutable_file_number": 7060000
}, - "signed_entity_type": {
- "MithrilStakeDistribution": 246
}, - "metadata": {
- "network": "mainnet",
- "version": "0.1.0",
- "parameters": {
- "k": 5,
- "m": 100,
- "phi_f": 0.65
}, - "initiated_at": "2022-07-17T18:51:23.192811338Z",
- "sealed_at": "2022-07-17T18:51:35.830832580Z",
- "signers": [
- {
- "party_id": "1234567890",
- "verification_key": "7b12766b223a5c342b39302c32392c39392c39382c3131313138342c32252c32352c31353",
- "verification_key_signature": "7b5473693727369676d61223a7b227369676d6d61223a7b261223a9b227369676d61213a",
- "operational_certificate": "5b73136372c38302c37342c3136362c313535b5b3232352c3230332c3235352c313030262c38322c39382c32c39332c3138342c3135362c3136362c32312c3131312c3232312c36332c3137372c3232332c3232332c31392c3537",
- "kes_period": 123,
- "stake": 1234
}, - {
- "party_id": "2345678900",
- "verification_key": "7b392c39392c13131312766b223a5c39382c313342b39302c252c32352c31353328342c32",
- "verification_key_signature": "2c33302c3133312c3138322c34362c3133352c372c3139302c3235322c35352c32322c39",
- "operational_certificate": "3231342c3137372c37312c3232352c3233332c3135335d2c322c3139322c5b3133352c34312c3230332c3131332c3c33352c3234302c3230392c312c32392c3233332c33342c3138382c3134312c3130342c3234382c3231392c3",
- "kes_period": 456,
- "stake": 2345
}
]
}, - "protocol_message": {
- "message_parts": {
- "snapshot_digest": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "next_aggregate_verification_key": "b132362c3232352c36392c31373133352c31323235392c3235332c3233342c34226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33382c3382c3138322c3231322c2c363"
}
}, - "signed_message": "07ed7c9e128744c1a4797b7eb34c54823cc7a21fc95c19876122ab4bb0fe796d6bba2bc",
- "aggregate_verification_key": "7b232392c3130342c34392c35312c3130332c3136352c37364223a7b22726f6f74223a5b3137392c3135312c3135382c37332c37372c2c3135392c3226d745f636f6d6d69746d656e7",
- "multi_signature": "7bc3139392c3135392c3235342c3231392c3133362c3132392c38342c353227369676e617475726573223a5b5b7b227369676d61223a5b3135312c362c3131222c33382c3135382c3137312c3137312c3234392c32342c3232382c3133302c38352c32362c38382c3135382c32303c323337322c323339362c32342c313530342c313532302c3135323737302c323830372c323831392c323834302c323834342c323836302c323837322c323838362c323839312c323839382c3239333533332c343538352c343632342c343634322c343634372c343636362c334312c31343636382c31343637352c31343639352c31343639392c31343730312c31343730352c31343733302c31343733382c31343733392c31343734362c31343735342c31343736312c31343738362c31343739352c31343739362c31343832362c31343835392c31343836302c31343836322c31343837312c31343837322c31343837392c31343838392c31343839332c31343839372c31343839392c31343932362c31343937372c31343939312c31353032332c31353033382c31353034342c31353036332c31353039312c31353039322c31353039382c31353131392c31353132312c31353136362c31353139362c31353230322c31353231302c31353231392c31353233392c31353234362c31353235322c31353237352c31353238312c31353334372c31353335372c31353338372c31353431372c31353434352c31353434382c31353435332c31353435342c31353530382c31353534352c31353536302c31353537302c31353538392c31353631302c31353631312c31353631322c31353632382c31353633302c31353633392c31353636302c31353636312c31353637392c31353731372c31353731392c31353732362c31353733382c31353734382c31353735392c31353736312c31353739312c31353830312c31353830332c31353831342c31353831392c31353832372c31353832392c31353834392c31353835332c31353835372c31353835392c31353836372c31353839362c31353930312c31353930372c31353931302c31353931332c31353931352c31353935352c31353937362c31353938372c31363031372c31363036332c31363131382c31363132382c31363135352c31363136372c31363230312c31363230362c31363231392c31363232312c31363232392c31363233342c31363234362c31363333302c31363335302c31363336362c31353739312c31353830312c31353830332c31353831342c31353831392c31353832372c31353832392c31353834392c31353835332c31353835372c31353835392c31353836372c31353839362c31353930312c31353930372c31353931302c31353931332c31353931352c31353935352c31353937362c31353938372c31363031372c31363036332c31363131382c31363132382c31363135352c31363136372c31363230312c31363230362c31363231392c31363232312c31363232392c31363233342c31363234362c31363333302c31363335302c31363336362c31363339302c31363430342c31363435342c31363437392c31363533302c31363533382c31363534372c31363535322c31363630382c31363631312c31363631382c31363633312c31363635382c31363637312c31363639352c31363730302c31363731332c31363732372c31363733312c31363733322c31363734322c31363736302c31363737342c31363739322c31363739362c31363739382c31363830342c31363831302c31363834302c31363834382c31363835392c31363836332c31363838362c31363838382c31363930302c31363932372c31363932382c31363932392c31363933372c31363934302c31363934362c31363935302c31363936312c31363938312c31373033302c31373035332c31373036322c31373038322c31373130312c31373130332c31373130352c31373130362c31373132302c31373132312c31373133322c31373133332c31373135312c31373135392c31373138332c31373232302c31373239322c31373331312c31373331332c31373332362c31373333362c31373334352c31373334392c31373335372c31373337352c31373338332c31373338352c31373430302c31373430362c31373431342c31373432322c31373434362c31373435312c31373436362c31373530322c31373531392c31373535382c31373536352c31373537332c31373538302c31373630362c31373632332c31373636382c31373639352c31373732392c31373733312c31373733352c31373733372c31373734342c31373734352c31373734372c31373736382c31373737302c31373737332c31373737352c31373739362c31373830342c31373831302c31373831332c31373832332c31373834352c31373834362c31373838382c31373839342c31373930352c31373931302c31373935372c31373936372c31373938372c31373939342c31383030322c31383030332c31383031312c31383032302c31383032392c31383034362c31383036382c31383037322c31383131372c31383133372c31383134302c31383134332c31383136322c31383137302c31383137342c31383138342c31383138392c31383139392c31383230382c31383232302c31383235312c31383235332c31383237392c31383238312c31383239312c31383239382c31383330312c31383331362c31383332382c31383334312c31383336332c31383337342c31383338352c31383338372c31383434392c31383437362c31383438322c31383439382c31383530352c31383530362c31383531342c31383532362c31383532382c31383533382c31383535322c31383535382c31383537342c31383538342c31383539322c31383631392c32c3832392c3834382c3835312c3835342c3836352c3838332c3838342c3839332c3839372c3930392c3937312c3938362c3939352c313032312c313032362c313035312c313036322c313036382c313038322c313038332c313038352c313133312c313134392c313135392c313136342c313137322c313137332c313231372c313231382c313234372c313239332c313330382c313331352c313333302c313335302c313336342c313337392c313430302c313430362c313432372c313434392c313436342c313436362c313436372c313437362c313530312c313530342c313532302c313532352c313533322c313534322c313536372c313537362c313538322c313538332c313632362c313633322c313633332c313634312c313635322c313730302c313732392c313831322c313832302c313834322c313835392c313837312c313930352c313930372c313931322c313931332c313935362c313936302c313937342c323030302c323031302c323033322c323033372c323037372c323038372c323039382c323130372c323131382c323133322c323133382c323135312c323230332c323230392c323231312c323233372c323234382c323235332c323237372c323238302c323330382c323331342c323333322c323334332c323334382c373535362c373535382c373537372c373630392c373631382c373633392c373635342c373635352c373731392c373732322c373732332c373830342c373832372c373833362c373833372c373835302c373835332c373835362c373837382c373839362c373931392c373933312c373933332c373934332c373934362c373935342c383030302c383031302c383031342c383033302c383034332c383035352c383036342c383036382c383037362c383132322c383134332c383134382c383136362c383139302c383234372c383235312c383236302c383237352c383238312c383238352c383330362c383332352c383337332c383337372c383338372c383339372c383339382c383431362c383433312c383436362c383436372c383437372c383438332c383438392c383439322c383439382c383531372c383533302c383533352c383534302c383536392c383539392c383631322c383634322c383635322c383637302c383730312c383733342c383738382c383739312c383832372c383834352c383835312c383836312c383837362c383932392c383933372c383935322c383937362c393031362c393032302c393032372c393032392c393034382c393036302c393038392c393130332c393130362c393131312c393131322c393131382c393133342c393134392c393137372c393137382c393231312c393231322c393232392c393234332c393236312c393236322c393238362c393239372c393331382c393333392c393338312c393339352c393339362c393431372c393433302c393436332c393439322c393532342c393633332c393633352c393634322c393639322c393731382c393732342c393732362c393733352c393735362c393738302c393738322c393739332c393831332c393837312c393839382c393931382c393932332c393932362c393934312c393934392c393935322c393935382c393936312c393936342c393937352c31303030362c31303032362c31303032392c31303035382c31303037342c31303037392c31303131302c31303132332c31303133392c31303134382c31303135362c31303136392c31303230362c31303235352c31303235372c31303235382c31303237332c31303237342c31303239312c31303239332c31303239342c31303330352c31303334312c31303334332c31303338322c31303338332c31303430342c31303431312c31303431332c31303432302c31303434322c31303434342c31303435372c31303436302c31303437322c31303438372c31303532322c31303535312c31303536342c31303636352c31303638352c31303730302c31303730362c31303733322c31303734332c31303737322c31303831352c31303833332c31303834332c31303836362c31303839322c31303930382c31303938382c31313033362c31313034312c31313037312c31313038322c31313039322c31313039392c31313130392c31313131352c31313134362c31313139332c31313230302c31313232382c31313232392c31313235342c31313236372c31313238302c31313239332c31313239352c31313331312c31313331382c31313332322c31313334302c31313334342c31313335322c31313335342c31313335352c31313335362c31313338352c31313430322c31313431332c31313433342c31313434322c31313436382c31313437322c31313437372c31313439362c31313439392c31313530362c31313531302c31313532342c31313532372c31313534342c31313538312c31313539322c31313630342c31313633352c31313635382c31313733332c31313733362c31313735342c31313739342c31313831332c31313831392c31313832342c31313832372c31313836392c31313837312c31313931342c31313937302c31313937342c31323031362c31323031392c31323034302c31323034342c31323035342c31323036382c31323037302c31323037372c31323039392c31323130342c31323133302c31323133392c31323135302c31323135392c31323136302c31323137352c31323230302c31323230322c31323232382c31323233392c31323330352c31323336382c31323337352c31323337392c31323338392c31323430372c31323431302c31323433322c31323434302c31323434312c31323437352c31323530362c31323531322c31323531332c31323531372c31323532312c31323533302c31323538302c31323633362c31323636392c31323637322c31323637362c31323637372c31323638332c31323638372c31323730352c31323732342c31323734362c31323734382c31323737362c31323739392c31323838352c31323839392c31323930372c31323933302c31323933322c31323935382c31323939332c31333030332c31333033302c31333036312c31333038302c31333038332c31333130352c31333132372c31333133312c31333136392c31333138312c31333138322c31333138352c3133323231231333236352c31333238362c31333234322cc31333239342c3131333438362c1e233332362c31333333392c31333336352c31333337332c31333338352c31333339392c31333433332c31333435312c31333437382c3",
- "genesis_signature": ""
}
Returns the list of the most recent snapshots
[- {
- "digest": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "beacon": {
- "network": "mainnet",
- "epoch": 329,
- "immutable_file_number": 7060000
}, - "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572",
- "size": 26058531636,
- "created_at": "2022-07-21T17:32:28Z",
- "locations": [
- "magnet:?xt=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C",
- "ipfs:QmPXME1oRtoT627YKaDPDQ3PwA8tdP9rWuAAweLzqSwAWT"
]
}
]
Returns the information of a snapshot and where to retrieve its binary content
digest required | string <bytes> Example: 6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732 Digest of the snapshot to retrieve |
{- "digest": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "beacon": {
- "network": "mainnet",
- "epoch": 329,
- "immutable_file_number": 7060000
}, - "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572",
- "size": 26058531636,
- "created_at": "2022-07-21T17:32:28Z",
- "locations": [
- "magnet:?xt=urn:sha1:YNCKHTQCWBTRNJIV4WNAE52SJUQCZO5C",
- "ipfs:QmPXME1oRtoT627YKaDPDQ3PwA8tdP9rWuAAweLzqSwAWT"
], - "compression_algorithm": "zstandard",
- "cardano_node_version": "1.0.0"
}
Returns the snapshot archive binary content
digest required | string <bytes> Example: 6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732 Digest of the snapshot to download |
{- "label": "Internal error",
- "message": "An error occurred, the operation could not be completed"
}
Returns the list of the most recent Mithril stake distributions
[- {
- "epoch": 123,
- "hash": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572",
- "created_at": "2022-06-14T10:52:31Z"
}
]
Returns the information of a Mithril stake distribution
hash required | string <bytes> Example: 6da2b104ed68481ef829d72d72c2f6a20142916d17985e01774b14ed49f0fea1 Hash of the Mithril stake distribution to retrieve |
{- "epoch": 123,
- "hash": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572",
- "signers": [
- {
- "party_id": "1234567890",
- "verification_key": "7b12766b223a5c342b39302c32392c39392c39382c3131313138342c32252c32352c31353",
- "verification_key_signature": "7b5473693727369676d61223a7b227369676d6d61223a7b261223a9b227369676d61213a",
- "operational_certificate": "5b73136372c38302c37342c3136362c313535b5b3232352c3230332c3235352c313030262c38322c39382c32c39332c3138342c3135362c3136362c32312c3131312c3232312c36332c3137372c3232332c3232332c31392c3537",
- "kes_period": 123,
- "stake": 1234
}, - {
- "party_id": "2345678900",
- "verification_key": "7b392c39392c13131312766b223a5c39382c313342b39302c252c32352c31353328342c32",
- "verification_key_signature": "2c33302c3133312c3138322c34362c3133352c372c3139302c3235322c35352c32322c39",
- "operational_certificate": "3231342c3137372c37312c3232352c3233332c3135335d2c322c3139322c5b3133352c34312c3230332c3131332c3c33352c3234302c3230392c312c32392c3233332c33342c3138382c3134312c3130342c3234382c3231392c3",
- "kes_period": 456,
- "stake": 2345
}
], - "created_at": "2022-06-14T10:52:31Z",
- "protocol_parameters": {
- "k": 5,
- "m": 100,
- "phi_f": 0.65
}
}
Returns the list of the most recent Cardano transactions set snapshots
[- {
- "hash": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572",
- "merkle_root": "33bfd17bc082ab5dd1fc0788241c70aa5325241c70aa532530d190809c5391bbc307905e8372",
- "beacon": {
- "network": "mainnet",
- "epoch": 329,
- "immutable_file_number": 7060000
}, - "created_at": "2022-06-14T10:52:31Z"
}
]
Returns the information of a Cardano transactions set snapshot
hash required | string <bytes> Example: 6da2b104ed68481ef829d72d72c2f6a20142916d17985e01774b14ed49f0fea1 Hash of the Cardano transactions set snapshot to retrieve |
{- "hash": "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572",
- "merkle_root": "33bfd17bc082ab5dd1fc0788241c70aa5325241c70aa532530d190809c5391bbc307905e8372",
- "beacon": {
- "network": "mainnet",
- "epoch": 329,
- "immutable_file_number": 7060000
}, - "created_at": "2022-06-14T10:52:31Z"
}
Returns the transaction hashes and the corresponding proofs
transaction_hashes required | Array of strings Example: transaction_hashes=6dbb104ed68481ef829a26a20142916d17985e01774d72d72c2f Hashes of the Cardano transactions to retrieve proofs for |
{- "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572",
- "certified_transactions": [
- {
- "transactions_hashes": [
- "6367ee65d0d1272e6e70736a1ea2cae34015874517f6328364f6b73930966732",
- "5d0d1272e6e70736a1ea2cae34015876367ee64517f6328364f6b73930966732"
], - "proof": "5b73136372c38302c37342c3136362c313535b5b323136362c313535b5b3232352c3230332c3235352c313030262c38322c39382c32c39332c3138342c313532352c3230332c3235352c313030262c33136362c313535b5b3232352c3230332c3235352c313030262c38322c39382c32c39332c3138342c31358322c39382c32c39332c3138342c3135362c3136362c32312c3131312c3232312c36332c3137372c3232332c3232332c31392c3537"
}
], - "non_certified_transactions": [
- "732d0d1272e6e70736367ee6f6328364f6b739309666a1ea2cae34015874517"
], - "latest_immutable_file_number": 7060000
}
Returns the signers that registered at a given Epoch
epoch required | integer <int64> Example: 419 Cardano Epoch at which the signer registrations are registered |
{- "registered_at": 420,
- "signing_at": 422,
- "registrations": [
- {
- "party_id": "1234567890",
- "stake": 1234
}
]
}
Returns the signers party id and, if available, their pool ticker
{- "network": "mainnet",
- "signers": [
- {
- "party_id": "pool1234567890",
- "pool_ticker": "[Pool_Name]",
- "has_registered": true
}, - {
- "party_id": "pool0987654321",
- "has_registered": false
}
]
}
{- "supply": {
- "max": "45000000000000000",
- "total": "32890715183299160",
- "circulating": "32412601976210393",
- "locked": "125006953355",
- "treasury": "98635632000000",
- "reserves": "46635632000000"
}, - "stake": {
- "live": "23204950463991654",
- "active": "22210233523456321"
}
}
Returns start and end of each era along with parameters that can vary between hard forks.
[- {
- "start": {
- "time": 0,
- "slot": 0,
- "epoch": 0
}, - "end": {
- "time": 89856000,
- "slot": 4492800,
- "epoch": 208
}, - "parameters": {
- "epoch_length": 21600,
- "slot_length": 20,
- "safe_zone": 4320
}
}, - {
- "start": {
- "time": 89856000,
- "slot": 4492800,
- "epoch": 208
}, - "end": {
- "time": 101952000,
- "slot": 16588800,
- "epoch": 236
}, - "parameters": {
- "epoch_length": 432000,
- "slot_length": 1,
- "safe_zone": 129600
}
}
]
List of registered stake pools.
count | integer [ 1 .. 100 ] Default: 100 The number of pools per page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "pool1hn7hlwrschqykupwwrtdfkvt2u4uaxvsgxyh6z63703p2knj288",
- "pool1ztjyjfsh432eqetadf82uwuxklh28xc85zcphpwq6mmezavzad2"
]
List of registered stake pools with additional information.
count | integer [ 1 .. 100 ] Default: 100 The number of pools per page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "pool_id": "pool19u64770wqp6s95gkajc8udheske5e6ljmpq33awxk326zjaza0q",
- "hex": "2f355f79ee007502d116ecb07e36f985b34cebf2d84118f5c6b455a1",
- "active_stake": "1541200000",
- "live_stake": "1541400000"
}, - {
- "pool_id": "pool1dvla4zq98hpvacv20snndupjrqhuc79zl6gjap565nku6et5zdx",
- "hex": "6b3fda88053dc2cee18a7c2736f032182fcc78a2fe912e869aa4edcd",
- "active_stake": "22200000",
- "live_stake": "48955550"
}, - {
- "pool_id": "pool1wvccajt4eugjtf3k0ja3exjqdj7t8egsujwhcw4tzj4rzsxzw5w",
- "hex": "73318ec975cf1125a6367cbb1c9a406cbcb3e510e49d7c3aab14aa31",
- "active_stake": "9989541215",
- "live_stake": "168445464878"
}
]
List of already retired pools.
count | integer [ 1 .. 100 ] Default: 100 The number of pools per page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "pool_id": "pool19u64770wqp6s95gkajc8udheske5e6ljmpq33awxk326zjaza0q",
- "epoch": 225
}, - {
- "pool_id": "pool1dvla4zq98hpvacv20snndupjrqhuc79zl6gjap565nku6et5zdx",
- "epoch": 215
}, - {
- "pool_id": "pool1wvccajt4eugjtf3k0ja3exjqdj7t8egsujwhcw4tzj4rzsxzw5w",
- "epoch": 231
}
]
List of stake pools retiring in the upcoming epochs
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "pool_id": "pool19u64770wqp6s95gkajc8udheske5e6ljmpq33awxk326zjaza0q",
- "epoch": 225
}, - {
- "pool_id": "pool1dvla4zq98hpvacv20snndupjrqhuc79zl6gjap565nku6et5zdx",
- "epoch": 215
}, - {
- "pool_id": "pool1wvccajt4eugjtf3k0ja3exjqdj7t8egsujwhcw4tzj4rzsxzw5w",
- "epoch": 231
}
]
Pool information.
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Bech32 or hexadecimal pool ID. |
{- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "hex": "0f292fcaa02b8b2f9b3c8f9fd8e0bb21abedb692a6d5058df3ef2735",
- "vrf_key": "0b5245f9934ec2151116fb8ec00f35fd00e0aa3b075c4ed12cce440f999d8233",
- "blocks_minted": 69,
- "blocks_epoch": 4,
- "live_stake": "6900000000",
- "live_size": 0.42,
- "live_saturation": 0.93,
- "live_delegators": 127,
- "active_stake": "4200000000",
- "active_size": 0.43,
- "declared_pledge": "5000000000",
- "live_pledge": "5000000001",
- "margin_cost": 0.05,
- "fixed_cost": "340000000",
- "reward_account": "stake1uxkptsa4lkr55jleztw43t37vgdn88l6ghclfwuxld2eykgpgvg3f",
- "owners": [
- "stake1u98nnlkvkk23vtvf9273uq7cph5ww6u2yq2389psuqet90sv4xv9v"
], - "registration": [
- "9f83e5484f543e05b52e99988272a31da373f3aab4c064c76db96643a355d9dc",
- "7ce3b8c433bf401a190d58c8c483d8e3564dfd29ae8633c8b1b3e6c814403e95",
- "3e6e1200ce92977c3fe5996bd4d7d7e192bcb7e231bc762f9f240c76766535b9"
], - "retirement": [
- "252f622976d39e646815db75a77289cf16df4ad2b287dd8e3a889ce14c13d1a8"
]
}
History of stake pool parameters over epochs.
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Bech32 or hexadecimal pool ID. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "epoch": 233,
- "blocks": 22,
- "active_stake": "20485965693569",
- "active_size": 1.2345,
- "delegators_count": 115,
- "rewards": "206936253674159",
- "fees": "1290968354"
}
]
Stake pool registration metadata.
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Bech32 or hexadecimal pool ID. |
{- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "hex": "0f292fcaa02b8b2f9b3c8f9fd8e0bb21abedb692a6d5058df3ef2735",
- "hash": "47c0c68cb57f4a5b4a87bad896fc274678e7aea98e200fa14a1cb40c0cab1d8c",
- "ticker": "NUTS",
- "name": "Stake Nuts",
- "description": "The best pool ever",
}
Relays of a stake pool.
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Bech32 or hexadecimal pool ID. |
[- {
- "ipv4": "4.4.4.4",
- "dns": "relay1.stakenuts.com",
- "dns_srv": "_relays._tcp.relays.stakenuts.com",
- "port": 3001
}
]
List of current stake pools delegators.
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Bech32 or hexadecimal pool ID. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "address": "stake1ux4vspfvwuus9uwyp5p3f0ky7a30jq5j80jxse0fr7pa56sgn8kha",
- "live_stake": "1137959159981411"
}, - {
- "address": "stake1uylayej7esmarzd4mk4aru37zh9yz0luj3g9fsvgpfaxulq564r5u",
- "live_stake": "16958865648"
}, - {
- "address": "stake1u8lr2pnrgf8f7vrs9lt79hc3sxm8s2w4rwvgpncks3axx6q93d4ck",
- "live_stake": "18605647"
}
]
List of stake pools blocks.
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Bech32 or hexadecimal pool ID. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- "d8982ca42cfe76b747cc681d35d671050a9e41e9cfe26573eb214e94fe6ff21d",
- "026436c539e2ce84c7f77ffe669f4e4bbbb3b9c53512e5857dcba8bb0b4e9a8c",
- "bcc8487f419b8c668a18ea2120822a05df6dfe1de1f0fac3feba88cf760f303c",
- "86bf7b4a274e0f8ec9816171667c1b4a0cfc661dc21563f271acea9482b62df7"
]
List of certificate updates to the stake pool.
pool_id required | string Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy Bech32 or hexadecimal pool ID. |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "6804edf9712d2b619edb6ac86861fe93a730693183a262b165fcc1ba1bc99cad",
- "cert_index": 0,
- "action": "registered"
}, - {
- "tx_hash": "9c190bc1ac88b2ab0c05a82d7de8b71b67a9316377e865748a89d4426c0d3005",
- "cert_index": 0,
- "action": "deregistered"
}, - {
- "tx_hash": "e14a75b0eb2625de7055f1f580d70426311b78e0d36dd695a6bdc96c7b3d80e0",
- "cert_index": 1,
- "action": "registered"
}
]
List of scripts.
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "script_hash": "13a3efd825703a352a8f71f4e2758d08c28c564e8dfcce9f77776ad1"
}, - {
- "script_hash": "e1457a0c47dfb7a2f6b8fbb059bdceab163c05d34f195b87b9f2b30e"
}, - {
- "script_hash": "a6e63c0ff05c96943d1cc30bf53112ffff0f34b45986021ca058ec54"
}
]
Information about a specific script
script_hash required | string Example: e1457a0c47dfb7a2f6b8fbb059bdceab163c05d34f195b87b9f2b30e Hash of the script |
{- "script_hash": "13a3efd825703a352a8f71f4e2758d08c28c564e8dfcce9f77776ad1",
- "type": "plutusV1",
- "serialised_size": 3119
}
JSON representation of a timelock
script
script_hash required | string Example: e1457a0c47dfb7a2f6b8fbb059bdceab163c05d34f195b87b9f2b30e Hash of the script |
{- "json": {
- "type": "atLeast",
- "scripts": [
- {
- "type": "sig",
- "keyHash": "654891a4db2ea44b5263f4079a33efa0358ba90769e3d8f86a4a0f81"
}, - {
- "type": "sig",
- "keyHash": "8685ad48f9bebb8fdb6447abbe140645e0bf743ff98da62e63e2147f"
}, - {
- "type": "sig",
- "keyHash": "cb0f3b3f91693374ff7ce1d473cf6e721c7bab52b0737f04164e5a2d"
}
], - "required": 2
}
}
CBOR representation of a plutus
script
script_hash required | string Example: e1457a0c47dfb7a2f6b8fbb059bdceab163c05d34f195b87b9f2b30e Hash of the script |
{- "cbor": "4e4d01000033222220051200120011"
}
List of redeemers of a specific script
script_hash required | string Example: e1457a0c47dfb7a2f6b8fbb059bdceab163c05d34f195b87b9f2b30e Hash of the script |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dce628516157f0",
- "tx_index": 0,
- "purpose": "spend",
- "redeemer_data_hash": "923918e403bf43c34b4ef6b48eb2ee04babed17320d8d1b9ff9ad086e86f44ec",
- "datum_hash": "923918e403bf43c34b4ef6b48eb2ee04babed17320d8d1b9ff9ad086e86f44ec",
- "unit_mem": "1700",
- "unit_steps": "476468",
- "fee": "172033"
}
]
Query JSON value of a datum by its hash
datum_hash required | string Example: db583ad85881a96c73fbb26ab9e24d1120bb38f45385664bb9c797a2ea8d9a2d Hash of the datum |
{- "json_value": {
- "int": 42
}
}
Query CBOR serialised datum by its hash
datum_hash required | string Example: db583ad85881a96c73fbb26ab9e24d1120bb38f45385664bb9c797a2ea8d9a2d Hash of the datum |
{- "cbor": "19a6aa"
}
Return content of the requested transaction.
hash required | string <64-character case-sensitive hexadecimal string.> Example: 6e5f825c42c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction |
{- "hash": "1e043f100dce12d107f679685acd2fc0610e10f72a92d412794c9773d11d8477",
- "block": "356b7d7dbb696ccd12775c016941057a9dc70898d87a63fc752271bb46856940",
- "block_height": 123456,
- "block_time": 1635505891,
- "slot": 42000000,
- "index": 1,
- "output_amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "fees": "182485",
- "deposit": "0",
- "size": 433,
- "invalid_before": null,
- "invalid_hereafter": "13885913",
- "utxo_count": 4,
- "withdrawal_count": 0,
- "mir_cert_count": 0,
- "delegation_count": 0,
- "stake_cert_count": 0,
- "pool_update_count": 0,
- "pool_retire_count": 0,
- "asset_mint_or_burn_count": 0,
- "redeemer_count": 0,
- "valid_contract": true
}
Return the inputs and UTXOs of the specific transaction.
hash required | string <64-character case-sensitive hexadecimal string> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction |
{- "hash": "1e043f100dce12d107f679685acd2fc0610e10f72a92d412794c9773d11d8477",
- "inputs": [
- {
- "address": "addr1q9ld26v2lv8wvrxxmvg90pn8n8n5k6tdst06q2s856rwmvnueldzuuqmnsye359fqrk8hwvenjnqultn7djtrlft7jnq7dy7wv",
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dce628516157f0",
- "output_index": 0,
- "data_hash": "9e478573ab81ea7a8e31891ce0648b81229f408d596a3483e6f4f9b92d3cf710",
- "inline_datum": "19a6aa",
- "reference_script_hash": "13a3efd825703a352a8f71f4e2758d08c28c564e8dfcce9f77776ad1",
- "collateral": false,
- "reference": false
}
], - "outputs": [
- {
- "address": "addr1q9ld26v2lv8wvrxxmvg90pn8n8n5k6tdst06q2s856rwmvnueldzuuqmnsye359fqrk8hwvenjnqultn7djtrlft7jnq7dy7wv",
- "amount": [
- {
- "unit": "lovelace",
- "quantity": "42000000"
}, - {
- "unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
- "quantity": "12"
}
], - "output_index": 0,
- "data_hash": "9e478573ab81ea7a8e31891ce0648b81229f408d596a3483e6f4f9b92d3cf710",
- "inline_datum": "19a6aa",
- "collateral": false,
- "reference_script_hash": "13a3efd825703a352a8f71f4e2758d08c28c564e8dfcce9f77776ad1"
}
]
}
Obtain information about (de)registration of stake addresses within a transaction.
hash required | string <64-character case-sensitive hexadecimal string.> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction. |
[- {
- "cert_index": 0,
- "address": "stake1u9t3a0tcwune5xrnfjg4q7cpvjlgx9lcv0cuqf5mhfjwrvcwrulda",
- "registration": true
}
]
Obtain information about delegation certificates of a specific transaction.
hash required | string <64-character case-sensitive hexadecimal string> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction. |
[- {
- "index": 0,
- "cert_index": 0,
- "address": "stake1u9r76ypf5fskppa0cmttas05cgcswrttn6jrq4yd7jpdnvc7gt0yc",
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "active_epoch": 210
}
]
Obtain information about withdrawals of a specific transaction.
hash required | string <64-character case-sensitive hexadecimal string> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction. |
[- {
- "address": "stake1u9r76ypf5fskppa0cmttas05cgcswrttn6jrq4yd7jpdnvc7gt0yc",
- "amount": "431833601"
}
]
Obtain information about Move Instantaneous Rewards (MIRs) of a specific transaction.
hash required | string <64-character case-sensitive hexadecimal string> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction. |
[- {
- "pot": "reserve",
- "cert_index": 0,
- "address": "stake1u9r76ypf5fskppa0cmttas05cgcswrttn6jrq4yd7jpdnvc7gt0yc",
- "amount": "431833601"
}
]
Obtain information about stake pool registration and update certificates of a specific transaction.
hash required | string <64-character case-sensitive hexadecimal string> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction |
[- {
- "cert_index": 0,
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "vrf_key": "0b5245f9934ec2151116fb8ec00f35fd00e0aa3b075c4ed12cce440f999d8233",
- "pledge": "5000000000",
- "margin_cost": 0.05,
- "fixed_cost": "340000000",
- "reward_account": "stake1uxkptsa4lkr55jleztw43t37vgdn88l6ghclfwuxld2eykgpgvg3f",
- "owners": [
- "stake1u98nnlkvkk23vtvf9273uq7cph5ww6u2yq2389psuqet90sv4xv9v"
], - "metadata": {
- "hash": "47c0c68cb57f4a5b4a87bad896fc274678e7aea98e200fa14a1cb40c0cab1d8c",
- "ticker": "NUTS",
- "name": "Stake Nuts",
- "description": "The best pool ever",
}, - "relays": [
- {
- "ipv4": "4.4.4.4",
- "dns": "relay1.stakenuts.com",
- "dns_srv": "_relays._tcp.relays.stakenuts.com",
- "port": 3001
}
], - "active_epoch": 210
}
]
Obtain information about stake pool retirements within a specific transaction.
hash required | string <64-character case-sensitive hexadecimal string.> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction |
[- {
- "cert_index": 0,
- "pool_id": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy",
- "retiring_epoch": 216
}
]
Obtain the transaction metadata.
hash required | string <64-character case-sensitive hexadecimal string.> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction |
[- {
- "label": "1967",
- "json_metadata": {
- "hash": "6bf124f217d0e5a0a8adb1dbd8540e1334280d49ab861127868339f43b3948af"
}
}, - {
- "label": "1968",
- "json_metadata": {
- "ADAUSD": [
- {
- "value": "0.10409800535729975",
- "source": "ergoOracles"
}
]
}
}
]
Obtain the transaction metadata in CBOR.
hash required | string <64-character case-sensitive hexadecimal string.> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction |
[- {
- "label": "1968",
- "cbor_metadata": "\\xa100a16b436f6d62696e6174696f6e8601010101010c",
- "metadata": "a100a16b436f6d62696e6174696f6e8601010101010c"
}
]
Obtain the transaction redeemers.
hash required | string <64-character case-sensitive hexadecimal string.> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the requested transaction |
[- {
- "tx_index": 0,
- "purpose": "spend",
- "script_hash": "ec26b89af41bef0f7585353831cb5da42b5b37185e0c8a526143b824",
- "redeemer_data_hash": "923918e403bf43c34b4ef6b48eb2ee04babed17320d8d1b9ff9ad086e86f44ec",
- "datum_hash": "923918e403bf43c34b4ef6b48eb2ee04babed17320d8d1b9ff9ad086e86f44ec",
- "unit_mem": "1700",
- "unit_steps": "476468",
- "fee": "172033"
}
]
Obtain the extra transaction witnesses.
hash required | string <64-character case-sensitive hexadecimal string.> Example: 6e5f825c82c1c6d6b77f2a14092f3b78c8f1b66db6f4cf8caec1555b6f967b3b Hash of the transaction |
[- {
- "witness_hash": "d52e11f3e48436dd42dbec6d88c239732e503b8b7a32af58e5f87625"
}
]
Submit an already serialized transaction to the network.
Hosted Endpoint only available for hosted variant.
The transaction to submit, serialized in CBOR.
The transaction to submit, serialized in CBOR.
83a400818258208911f640d452c3be4ff3d89db63b41ce048c056951286e2e28bbf8a51588ab44000181825839009493315cd92eb5d8c4304e67b7e16ae36d61d34502694657811a2c8e32c728d3861e164cab28cb8f006448139c8f1740ffb8e7aa9e5232dc1a10b2531f021a00029519075820cb798b0bce50604eaf2e0dc89367896b18f0a6ef6b32b57e3c9f83f8ee71e608a1008182582073fea80d424276ad0978d4fe5310e8bc2d485f5f6bb3bf87612989f112ad5a7d5840c40425229749a9434763cf01b492057fd56d7091a6372eaa777a1c9b1ca508c914e6a4ee9c0d40fc10952ed668e9ad65378a28b149de6bd4204bd9f095b0a902a11907b0a1667469636b657281a266736f757263656b736f757263655f6e616d656576616c7565736675676961742076656e69616d206d696e7573
"d1662b24fa9fe985fc2dce47455df399cb2e31e1e1819339e885801cc3578908"
Derive Shelley address from an xpub
xpub required | string Example: d507c8f866691bd96e131334c355188b1a1d0b2fa0ab11545075aab332d77d9eb19657ad13ee581b56b0f8d744d66ca356b93d42fe176b3de007d53e9c4c4e7a Hex xpub |
role required | integer Account role |
index required | integer Example: 2 Address index |
[- {
- "xpub": "d507c8f866691bd96e131334c355188b1a1d0b2fa0ab11545075aab332d77d9eb19657ad13ee581b56b0f8d744d66ca356b93d42fe176b3de007d53e9c4c4e7a",
- "role": 0,
- "index": 0,
- "address": "addr1q90sqnljxky88s0jsnps48jd872p7znzwym0jpzqnax6qs5nfrlkaatu28n0qzmqh7f2cpksxhpc9jefx3wrl0a2wu8q5amen7"
}
]
Submit an already serialized transaction to evaluate how much execution units it requires.
Hosted Endpoint only available for hosted variant.
Content-Type required | string Value: "application/cbor" |
The transaction to submit, serialized in CBOR.
The transaction to submit, serialized in CBOR.
83a400818258208911f640d452c3be4ff3d89db63b41ce048c056951286e2e28bbf8a51588ab44000181825839009493315cd92eb5d8c4304e67b7e16ae36d61d34502694657811a2c8e32c728d3861e164cab28cb8f006448139c8f1740ffb8e7aa9e5232dc1a10b2531f021a00029519075820cb798b0bce50604eaf2e0dc89367896b18f0a6ef6b32b57e3c9f83f8ee71e608a1008182582073fea80d424276ad0978d4fe5310e8bc2d485f5f6bb3bf87612989f112ad5a7d5840c40425229749a9434763cf01b492057fd56d7091a6372eaa777a1c9b1ca508c914e6a4ee9c0d40fc10952ed668e9ad65378a28b149de6bd4204bd9f095b0a902a11907b0a1667469636b657281a266736f757263656b736f757263655f6e616d656576616c7565736675676961742076656e69616d206d696e7573
{ }
Submit a JSON payload with transaction CBOR and additional UTXO set to evaluate how much execution units it requires.
Hosted Endpoint only available for hosted variant.
Content-Type required | string Value: "application/json" |
JSON payload
cbor required | string Transaction CBOR (encoded using base64 or base16). |
Array of objects or objects[ items = 2 items ] Additional UTXO as an array of tuples [TxIn, TxOut]. See https://ogmios.dev/mini-protocols/local-tx-submission/#additional-utxo-set. |
{- "cbor": "string",
- "additionalUtxoSet": [
- [
- {
- "txId": "string",
- "index": 0
}, - {
- "txId": "string",
- "index": 0
}
]
]
}
{ }
You need to /ipfs/pin/add
an object to avoid it being garbage collected. This usage
is being counted in your user account quota.
Hosted Endpoint only available for hosted variant.
file | string <binary> |
curl "https://ipfs.blockfrost.io/api/v0/ipfs/add" \ -X POST \ -H "project_id: $PROJECT_ID" \ -F "file=@./README.md"
{- "name": "README.md",
- "ipfs_hash": "QmZbHqiCxKEVX7QfijzJTkZiSi3WEVTcvANgNAWzDYgZDr",
- "size": "125297"
}
Retrieve an object from the IPFS gateway (useful if you do not want to rely on a public gateway, such as ipfs.blockfrost.dev
).
Hosted Endpoint only available for hosted variant.
IPFS_path required | string Path to the IPFS object |
{- "status_code": 400,
- "error": "Bad Request",
- "message": "Backend did not understand your request."
}
Pinning is necessary to avoid regular garbage collection (deletion) of IPFS objects. Non-pinned objects are regularly being removed without prior notice. Pinned objects are counted in your user storage quota.
IPFS_path required | string Path to the IPFS object |
{- "ipfs_hash": "QmPojRfAXYAXV92Dof7gtSgaVuxEk64xx9CKvprqu9VwA8",
- "state": "queued"
}
List objects pinned to local storage
Hosted Endpoint only available for hosted variant.
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "time_created": 1615551024,
- "time_pinned": 1615551024,
- "ipfs_hash": "QmdVMnULrY95mth2XkwjxDtMHvzuzmvUPTotKE1tgqKbCx",
- "size": "1615551024",
- "state": "pinned"
}
]
Get information about locally pinned IPFS object
Hosted Endpoint only available for hosted variant.
IPFS_path required | string The path to the IPFS object |
{- "time_created": 1615551024,
- "time_pinned": 1615551024,
- "ipfs_hash": "QmdVMnULrY95mth2XkwjxDtMHvzuzmvUPTotKE1tgqKbCx",
- "size": "1615551024",
- "state": "pinned"
}
Remove pinned objects from local storage
Hosted Endpoint only available for hosted variant.
IPFS_path required | string The path to the IPFS object |
{- "ipfs_hash": "QmPojRfAXYAXV92Dof7gtSgaVuxEk64xx9CKvprqu9VwA8",
- "state": "unpinned"
}
List metadata about specific address
address required | string Address of a metadata oracle |
{- "address": "addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz",
- "metadata_hash": "6bf124f217d0e5a0a8adb1dbd8540e1334280d49ab861127868339f43b3948af",
- "metadata": { }
}
List of records of a specific oracle
address required | string Address of a metadata oracle |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "name": "ADAUSD",
- "count": 1980038,
- "latest_block": 2657092
}, - {
- "name": "ADAEUR",
- "count": 1980038,
- "latest_block": 2657092
}, - {
- "name": "ADABTC",
- "count": 1980038,
- "latest_block": 2657092
}
]
List of records of a specific ticker
address required | string Address of a metadata oracle |
ticker required | string Ticker for the pool record |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "tx_hash": "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b",
- "block_height": 2657092,
- "tx_index": 8,
- "payload": [
- {
- "source": "coinGecko",
- "value": "1.29"
}, - {
- "source": "cryptoCompare",
- "value": "1.283"
}
]
}
]
List of records of a specific ticker
ticker required | string Ticker for the pool record |
count | integer [ 1 .. 100 ] Default: 100 The number of results displayed on one page. |
page | integer [ 1 .. 21474836 ] Default: 1 The page number for listing the results. |
order | string Default: "asc" Enum: "asc" "desc" The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
[- {
- "address": "addr_test1qpmtp5t0t5y6cqkaz7rfsyrx7mld77kpvksgkwm0p7en7qum7a589n30e80tclzrrnj8qr4qvzj6al0vpgtnmrkkksnqd8upj0",
- "tx_hash": "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b",
- "block_height": 2657092,
- "tx_index": 8,
- "payload": [
- {
- "source": "coinGecko",
- "value": "1.29"
}, - {
- "source": "cryptoCompare",
- "value": "1.283"
}
]
}
]