GraphQL Quick Start

Let's start with observing API playground of Acki Nacki testnet https://shellnet.ackinacki.org/graphql.

Learn how to read API documentation in the playground.

Then move to making an api request with curl.

And integrate it with TVM SDK.

Playground

Go to https://shellnet.ackinacki.org/graphql

Insert this query in the left part.

query{
blockchain{
    account(address:"0:1111111111111111111111111111111111111111111111111111111111111111"){
      info{
        balance(format:DEC)
        address
      }
    }
  }
}

Now click play button and you will see the result:

Documentation

Click on the button "book" in the upper left corner of the screen. You will see the API documentation with all available fields.

Request with curl

Request with SDK (JavaScript)

Last updated