Connect to GraphQL API
HTTPS
curl --location --request POST https://shellnet.ackinacki.org/graphql \
--header 'Content-Type: application/json' \
--data-raw '{"query":"query{\n blockchain{\n blocks(last:1){\n edges{\n node{\n hash\n seq_no\n }\n }\n }\n }\n}","variables":{}}'
In the next section find out how to work with GraphQL Web playground and easily explore blockchain data with it.
Last updated