Lisk Observer API Reference
Welcome to the Lisk Observer API reference.
This is a live example of how you can use Lisk Observer API in order to interact with the Lisk Blockchain via GraphQL.
Lisk Observer is a Lisk Blockchain Explorer and it provides GraphQL APIs for developing on top of the Lisk blockchain.
Contact
Lisk Observer - built by WeStake.Club⚡️
License
GNU General Public License v3.0
https://github.com/nerdvibe/lisk-observer/blob/main/LICENSE
Terms of Service: https://lisk.observer/terms
API Endpoints
Mainnet:
https://public-api.lisk.observer/graphql
Playground
Graphiql allows you to test the queries on the playground. The Graphiql playground is available here
Authorization
The GraphQL API allows public access. Requests are throttled to prevent abuse. The current limit for all unauthenticated users is 10 requests per second.
For users who wish to authenticate requests to avoid any potential rate limiting please contact us on Discord.
Repository
Lisk Observer is an open source project, the open API is based on Lisk Observer Server, which can be found on Github.
Deploy your own endpoint
The Lisk Observer API runs from the lisk-observer-server
NodeJS app, you can deploy your own instance to run your own Lisk Observer API.
Support & Contacts
If you need support on Lisk Observer API, you can find us on WeStake.Club⚡️ Discord Server.
Queries
account
Example
Query
query account($address: String!) {
account(address: $address) {
username
address
isDelegate
token {
...TokenFragment
}
sequence {
...SequenceFragment
}
keys {
...KeysFragment
}
dpos {
...DposFragment
}
hexAddress
publicKey
}
}
Variables
{"address": "xyz789"}
Response
{
"data": {
"account": {
"username": "abc123",
"address": "abc123",
"isDelegate": false,
"token": Token,
"sequence": Sequence,
"keys": Keys,
"dpos": Dpos,
"hexAddress": "xyz789",
"publicKey": "abc123"
}
}
}
accountLegacy
Example
Query
query accountLegacy($address: String!) {
accountLegacy(address: $address) {
username
address
balance
publicKey
}
}
Variables
{"address": "abc123"}
Response
{
"data": {
"accountLegacy": {
"username": "abc123",
"address": "xyz789",
"balance": "xyz789",
"publicKey": "xyz789"
}
}
}
blocksByAddress
Example
Query
query blocksByAddress($address: String!, $page: Int) {
blocksByAddress(address: $address, page: $page) {
data {
...BlockFragment
}
pagination {
...PaginationFragment
}
}
}
Variables
{"address": "xyz789", "page": 987}
Response
{
"data": {
"blocksByAddress": {
"data": [Block],
"pagination": Pagination
}
}
}
delegates
Example
Query
query delegates($limit: Int) {
delegates(limit: $limit) {
locked
supply
delegates {
delegates {
}
}
promises {
...PromisesFragment
}
}
}
Variables
{"limit": 123}
Response
{
"data": {
"delegates": {
"locked": "xyz789",
"supply": "xyz789",
"delegates": DelegatesList,
"promises": [Promises]
}
}
}
eternityWall
Example
Query
query eternityWall($page: Int) {
eternityWall(page: $page) {
data {
...EthernityWallMessageFragment
}
pagination {
...PaginationFragment
}
}
}
Variables
{"page": 123}
Response
{
"data": {
"eternityWall": {
"data": [EthernityWallMessage],
"pagination": Pagination
}
}
}
getHistoricalPrices
Example
Query
query getHistoricalPrices($currency: Currencies) {
getHistoricalPrices(currency: $currency) {
currency
date
value
}
}
Variables
{"currency": Currencies}
Response
{
"data": {
"getHistoricalPrices": {
"currency": Currencies,
"date": ["abc123"],
"value": [987.65]
}
}
}
knownAddresses
Example
Query
query knownAddresses {
knownAddresses {
address
identifier
isExchange
isLiskHq
isScam
tag
balance
}
}
Response
{
"data": {
"knownAddresses": [
{
"address": "xyz789",
"identifier": "xyz789",
"isExchange": false,
"isLiskHq": false,
"isScam": true,
"tag": "abc123",
"balance": "abc123"
}
]
}
}
lastBlock
Example
Query
query lastBlock {
lastBlock {
id
height
timestamp
generatorPublicKey
reward
isFinal
username
address
finalized
}
}
Response
{
"data": {
"lastBlock": {
"id": "xyz789",
"height": "xyz789",
"timestamp": "abc123",
"generatorPublicKey": "abc123",
"reward": "abc123",
"isFinal": true,
"username": "xyz789",
"address": "abc123",
"finalized": "abc123"
}
}
}
lastBlocks
Example
Query
query lastBlocks($page: Int) {
lastBlocks(page: $page) {
data {
...BlockFragment
}
pagination {
...PaginationFragment
}
}
}
Variables
{"page": 987}
Response
{
"data": {
"lastBlocks": {
"data": [Block],
"pagination": Pagination
}
}
}
lastTicks
Example
Query
query lastTicks {
lastTicks {
LSKUSD
LSKBTC
LSKEUR
LSKKRW
LSKPLN
LSKJPY
LSKCNY
LSKAED
}
}
Response
{
"data": {
"lastTicks": {
"LSKUSD": 987.65,
"LSKBTC": 123.45,
"LSKEUR": 123.45,
"LSKKRW": 123.45,
"LSKPLN": 987.65,
"LSKJPY": 123.45,
"LSKCNY": 987.65,
"LSKAED": 987.65
}
}
}
networkInfo
Example
Query
query networkInfo {
networkInfo {
stats {
...NetworkPeersStatFragment
}
peers {
...PeersFragment
}
countries {
...CountriesFragment
}
}
}
Response
{
"data": {
"networkInfo": {
"stats": NetworkPeersStat,
"peers": [Peers],
"countries": [Countries]
}
}
}
nodeInfo
Example
Query
query nodeInfo {
nodeInfo {
name
}
}
Response
{"data": {"nodeInfo": {"name": "xyz789"}}}
richList
Example
Query
query richList($page: Int) {
richList(page: $page) {
accounts {
...PaginatedRichListAccountFragment
}
supply
}
}
Variables
{"page": 987}
Response
{
"data": {
"richList": {
"accounts": PaginatedRichListAccount,
"supply": 123
}
}
}
search
Example
Query
query search($term: String!) {
search(term: $term) {
accounts {
...AccountSearchFragment
}
transactions {
...TransactionSearchFragment
}
blocks {
...BlockSearchFragment
}
}
}
Variables
{"term": "xyz789"}
Response
{
"data": {
"search": {
"accounts": [AccountSearch],
"transactions": [TransactionSearch],
"blocks": [BlockSearch]
}
}
}
stats
Example
Query
query stats {
stats {
last24TXs
blocks
staked
supply
totalTransactions
totalTransactions30
lastDay {
...StatKindFragment
}
lastMonth {
...StatKindFragment
}
lastYear {
...StatKindFragment
}
}
}
Response
{
"data": {
"stats": {
"last24TXs": 987,
"blocks": 123,
"staked": "abc123",
"supply": 123,
"totalTransactions": "abc123",
"totalTransactions30": "abc123",
"lastDay": StatKind,
"lastMonth": StatKind,
"lastYear": StatKind
}
}
}
transactions
Example
Query
query transactions($page: Int, $TXType: String) {
transactions(page: $page, TXType: $TXType) {
data {
...TransactionFragment
}
pagination {
...PaginationFragment
}
}
}
Variables
{"page": 987, "TXType": "abc123"}
Response
{
"data": {
"transactions": {
"data": [Transaction],
"pagination": Pagination
}
}
}
txStats
Example
Query
query txStats {
txStats {
lastDay
}
}
Response
{"data": {"txStats": {"lastDay": 987}}}
votes
Example
Query
query votes($page: Int!) {
votes(page: $page) {
data {
...VoteFragment
}
pagination {
...PaginationFragment
}
}
}
Variables
{"page": 987}
Response
{
"data": {
"votes": {
"data": [Vote],
"pagination": Pagination
}
}
}
whaleTransactions
Example
Query
query whaleTransactions($page: Int!) {
whaleTransactions(page: $page) {
data {
...TransactionFragment
}
pagination {
...PaginationFragment
}
}
}
Variables
{"page": 123}
Response
{
"data": {
"whaleTransactions": {
"data": [Transaction],
"pagination": Pagination
}
}
}
Types
Account
Field Name | Description |
---|---|
username -
String
|
|
address -
String
|
|
isDelegate -
Boolean
|
|
token -
Token
|
|
sequence -
Sequence
|
|
keys -
Keys
|
|
dpos -
Dpos
|
|
hexAddress -
String
|
|
publicKey -
String
|
Example
{
"username": "abc123",
"address": "abc123",
"isDelegate": true,
"token": Token,
"sequence": Sequence,
"keys": Keys,
"dpos": Dpos,
"hexAddress": "abc123",
"publicKey": "abc123"
}
Block
Field Name | Description |
---|---|
id -
String!
|
|
height -
String!
|
|
timestamp -
String!
|
|
generatorPublicKey -
String
|
|
reward -
String
|
|
isFinal -
Boolean
|
|
username -
String
|
|
address -
String
|
|
finalized -
String
|
Example
{
"id": "abc123",
"height": "xyz789",
"timestamp": "xyz789",
"generatorPublicKey": "abc123",
"reward": "abc123",
"isFinal": true,
"username": "abc123",
"address": "xyz789",
"finalized": "xyz789"
}
BlockLegacy
Field Name | Description |
---|---|
isLegacy -
Boolean
|
|
height -
Int
|
|
id -
String
|
|
timestamp -
String
|
|
numberOfTransactions -
Int
|
|
totalAmount -
String
|
|
totalFee -
String
|
|
reward -
String
|
|
generatorPublicKey -
String
|
|
username -
String
|
|
address -
String
|
Example
{
"isLegacy": true,
"height": 123,
"id": "abc123",
"timestamp": "xyz789",
"numberOfTransactions": 123,
"totalAmount": "xyz789",
"totalFee": "abc123",
"reward": "abc123",
"generatorPublicKey": "abc123",
"username": "xyz789",
"address": "abc123"
}
BlockLegacyForTransactions
Field Name | Description |
---|---|
isLegacy -
Boolean
|
|
height -
Int
|
|
id -
String
|
|
timestamp -
String
|
|
numberOfTransactions -
Int
|
|
totalAmount -
String
|
|
totalFee -
String
|
|
reward -
String
|
|
username -
String
|
|
address -
String
|
|
generatorPublicKey -
String
|
Example
{
"isLegacy": true,
"height": 123,
"id": "abc123",
"timestamp": "abc123",
"numberOfTransactions": 123,
"totalAmount": "xyz789",
"totalFee": "xyz789",
"reward": "abc123",
"username": "abc123",
"address": "xyz789",
"generatorPublicKey": "xyz789"
}
BlockWithTransactions
Field Name | Description |
---|---|
block -
Block
|
|
transactions -
[Transaction]
|
Example
{
"block": Block,
"transactions": [Transaction]
}
CurrencyData
Field Name | Description |
---|---|
currency -
Currencies
|
|
date -
[String]
|
|
value -
[Float]
|
Example
{
"currency": Currencies,
"date": ["xyz789"],
"value": [123.45]
}
Delegate
Field Name | Description |
---|---|
username -
String
|
|
pomHeights -
[Int]
|
|
consecutiveMissedBlocks -
Int
|
|
lastForgedHeight -
Int
|
|
isBanned -
Boolean
|
|
totalVotesReceived -
String
|
|
selfVotesAmount -
Float
|
|
rankAdjusted -
Int
|
|
isConsensusParticipant -
Boolean
|
|
minActiveHeight -
Int
|
|
nextForgingTime -
Int
|
|
producedBlocks -
Int
|
|
rank -
Int
|
|
consensusWeight -
String
|
Example
{
"username": "abc123",
"pomHeights": [123],
"consecutiveMissedBlocks": 987,
"lastForgedHeight": 123,
"isBanned": false,
"totalVotesReceived": "abc123",
"selfVotesAmount": 987.65,
"rankAdjusted": 123,
"isConsensusParticipant": false,
"minActiveHeight": 123,
"nextForgingTime": 987,
"producedBlocks": 123,
"rank": 987,
"consensusWeight": "abc123"
}
DelegatesList
Field Name | Description |
---|---|
delegates -
[AccountDelegate]
|
|
total -
Int
|
Example
{"delegates": [AccountDelegate], "total": 987}
DelegatesWithStats
Field Name | Description |
---|---|
locked -
String
|
|
supply -
String
|
|
delegates -
DelegatesList
|
|
promises -
[Promises]
|
Example
{
"locked": "xyz789",
"supply": "xyz789",
"delegates": DelegatesList,
"promises": [Promises]
}
Dpos
Field Name | Description |
---|---|
delegate -
Delegate
|
|
sentVotes -
[SentVotes]
|
|
receivedVotes -
[ReceivedVotes]
|
|
unlocking -
[Unlocking]
|
Example
{
"delegate": Delegate,
"sentVotes": [SentVotes],
"receivedVotes": [ReceivedVotes],
"unlocking": [Unlocking]
}
EthernityWallMessage
Field Name | Description |
---|---|
id -
String!
|
|
moduleAssetId -
String!
|
|
timestamp -
String!
|
|
senderId -
String
|
|
amount -
String
|
|
data -
String
|
|
senderUsername -
String
|
Example
{
"id": "abc123",
"moduleAssetId": "abc123",
"timestamp": "xyz789",
"senderId": "xyz789",
"amount": "xyz789",
"data": "xyz789",
"senderUsername": "abc123"
}
Float
The Float
scalar type represents signed double-precision fractional values as specified by
IEEE 754.
Example
987.65
Int
The Int
scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
Example
987
NetworkInfo
Field Name | Description |
---|---|
stats -
NetworkPeersStat
|
|
peers -
[Peers]
|
|
countries -
[Countries]
|
Example
{
"stats": NetworkPeersStat,
"peers": [Peers],
"countries": [Countries]
}
NetworkPeersStat
Field Name | Description |
---|---|
totalPeers -
Int
|
|
connectedPeers -
Int
|
|
disconnectedPeers -
Int
|
|
networkVersionDominant -
String
|
|
networkVersion -
[NetworkVersion]
|
Example
{
"totalPeers": 123,
"connectedPeers": 123,
"disconnectedPeers": 987,
"networkVersionDominant": "xyz789",
"networkVersion": [NetworkVersion]
}
PaginatedBlock
Field Name | Description |
---|---|
data -
[Block]
|
|
pagination -
Pagination
|
Example
{
"data": [Block],
"pagination": Pagination
}
PaginatedEthernityWallMessage
Field Name | Description |
---|---|
data -
[EthernityWallMessage]
|
|
pagination -
Pagination
|
Example
{
"data": [EthernityWallMessage],
"pagination": Pagination
}
PaginatedRichListAccount
Field Name | Description |
---|---|
data -
[RichListAccount]
|
|
pagination -
Pagination
|
Example
{
"data": [RichListAccount],
"pagination": Pagination
}
PaginatedTransaction
Field Name | Description |
---|---|
data -
[Transaction]
|
|
pagination -
Pagination
|
Example
{
"data": [Transaction],
"pagination": Pagination
}
PaginatedTransactionLegacy
Field Name | Description |
---|---|
data -
[TransactionLegacy]
|
|
pagination -
Pagination
|
Example
{
"data": [TransactionLegacy],
"pagination": Pagination
}
PaginatedVotes
Field Name | Description |
---|---|
data -
[Vote]
|
|
pagination -
Pagination
|
Example
{
"data": [Vote],
"pagination": Pagination
}
RichList
Field Name | Description |
---|---|
accounts -
PaginatedRichListAccount
|
|
supply -
Int
|
Example
{"accounts": PaginatedRichListAccount, "supply": 123}
Search
Field Name | Description |
---|---|
accounts -
[AccountSearch]
|
|
transactions -
[TransactionSearch]
|
|
blocks -
[BlockSearch]
|
Example
{
"accounts": [AccountSearch],
"transactions": [TransactionSearch],
"blocks": [BlockSearch]
}
StatKind
Field Name | Description |
---|---|
historicalTXs -
[StatElement]
|
|
totalCount -
Int
|
|
totalVolume -
Float
|
|
txKinds -
TxKinds
|
Example
{
"historicalTXs": [StatElement],
"totalCount": 123,
"totalVolume": 123.45,
"txKinds": TxKinds
}
Stats
Field Name | Description |
---|---|
last24TXs -
Int
|
|
blocks -
Int
|
|
staked -
String
|
|
supply -
Int
|
|
totalTransactions -
String
|
|
totalTransactions30 -
String
|
|
lastDay -
StatKind
|
|
lastMonth -
StatKind
|
|
lastYear -
StatKind
|
Example
{
"last24TXs": 987,
"blocks": 123,
"staked": "abc123",
"supply": 987,
"totalTransactions": "abc123",
"totalTransactions30": "xyz789",
"lastDay": StatKind,
"lastMonth": StatKind,
"lastYear": StatKind
}
String
The String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
Transaction
Field Name | Description |
---|---|
id -
String!
|
|
height -
String!
|
|
moduleAssetId -
String!
|
|
nonce -
String!
|
|
blockId -
String!
|
|
timestamp -
String!
|
|
senderPublicKey -
String
|
|
senderId -
String
|
|
recipientId -
String
|
|
amount -
String
|
|
data -
String
|
|
size -
String
|
|
fee -
String
|
|
minFee -
String
|
|
senderUsername -
String
|
|
recipientUsername -
String
|
|
votes -
[Vote]
|
|
voteAmount -
String
|
|
isFinalized -
Boolean
|
Example
{
"id": "xyz789",
"height": "abc123",
"moduleAssetId": "abc123",
"nonce": "abc123",
"blockId": "abc123",
"timestamp": "xyz789",
"senderPublicKey": "xyz789",
"senderId": "abc123",
"recipientId": "xyz789",
"amount": "xyz789",
"data": "abc123",
"size": "xyz789",
"fee": "abc123",
"minFee": "abc123",
"senderUsername": "xyz789",
"recipientUsername": "xyz789",
"votes": [Vote],
"voteAmount": "abc123",
"isFinalized": true
}
TransactionLegacy
Field Name | Description |
---|---|
isLegacy -
Boolean
|
|
id -
String!
|
|
blockId -
String
|
|
type -
Int
|
|
timestamp -
Int
|
|
senderPublicKey -
String
|
|
senderId -
String
|
|
recipientId -
String
|
|
amount -
String
|
|
fee -
String
|
|
signatures -
String
|
|
data -
String
|
|
asset -
String
|
|
senderUsername -
String
|
|
recipientUsername -
String
|
Example
{
"isLegacy": false,
"id": "abc123",
"blockId": "xyz789",
"type": 123,
"timestamp": 123,
"senderPublicKey": "abc123",
"senderId": "xyz789",
"recipientId": "abc123",
"amount": "abc123",
"fee": "xyz789",
"signatures": "abc123",
"data": "xyz789",
"asset": "abc123",
"senderUsername": "xyz789",
"recipientUsername": "abc123"
}
TransactionWithBlock
Field Name | Description |
---|---|
id -
String!
|
|
height -
String!
|
|
moduleAssetId -
String!
|
|
nonce -
String!
|
|
blockId -
String!
|
|
timestamp -
String!
|
|
senderPublicKey -
String
|
|
senderId -
String
|
|
recipientId -
String
|
|
amount -
String
|
|
data -
String
|
|
size -
String
|
|
fee -
String
|
|
isFinalized -
Boolean
|
|
senderUsername -
String
|
|
recipientUsername -
String
|
|
blockHeight -
String
|
|
blockTimestamp -
String!
|
|
blockGeneratorPublicKey -
String!
|
|
blockIsFinal -
String!
|
|
blockUsername -
String!
|
|
blockAddress -
String
|
|
votes -
[Vote]
|
|
multisigRegistration -
MultisigRegistration
|
|
tokenUnlock -
[TokenUnlock]
|
|
pomData -
PomData
|
Example
{
"id": "abc123",
"height": "abc123",
"moduleAssetId": "abc123",
"nonce": "xyz789",
"blockId": "xyz789",
"timestamp": "abc123",
"senderPublicKey": "abc123",
"senderId": "xyz789",
"recipientId": "abc123",
"amount": "xyz789",
"data": "xyz789",
"size": "abc123",
"fee": "abc123",
"isFinalized": true,
"senderUsername": "abc123",
"recipientUsername": "xyz789",
"blockHeight": "xyz789",
"blockTimestamp": "abc123",
"blockGeneratorPublicKey": "abc123",
"blockIsFinal": "abc123",
"blockUsername": "xyz789",
"blockAddress": "xyz789",
"votes": [Vote],
"multisigRegistration": MultisigRegistration,
"tokenUnlock": [TokenUnlock],
"pomData": PomData
}
TransactionWithBlockLegacy
Field Name | Description |
---|---|
transaction -
TransactionLegacy
|
|
block -
BlockLegacyForTransactions
|
Example
{
"transaction": TransactionLegacy,
"block": BlockLegacyForTransactions
}
Vote
Field Name | Description |
---|---|
delegateAddress -
String
|
|
delegateUsername -
String
|
|
amount -
String!
|
|
id -
String!
|
|
sentAddress -
String!
|
|
receivedAddress -
String!
|
|
timestamp -
String!
|
|
senderUsername -
String
|
|
recipientUsername -
String
|
Example
{
"delegateAddress": "abc123",
"delegateUsername": "abc123",
"amount": "abc123",
"id": "xyz789",
"sentAddress": "xyz789",
"receivedAddress": "xyz789",
"timestamp": "xyz789",
"senderUsername": "abc123",
"recipientUsername": "xyz789"
}