Send Your First Request
Quickly send your first request to Shinami's Node Service
Introduction
1. Create a Shinami account
You’ll need a Shinami account to follow this quick-start guide. Use referral code "Aptos First Request."
2. Create an API Access Key
To use Shinami's products, you’ll need an API access key to authenticate your requests. Set up a Node Access key for Testnet as shown here in our Authentication and API Keys guide
3. Make a request!
Here is an example GET /accounts/address
request that returns the sequence number and authentication key for an account.
Replace all instances of {{name}} with the actual value for that name
curl https://api.shinami.com/aptos/node/v1/accounts/{{accountAddress}} \
-H "Content-Type: application/json" \
-H "X-Api-Key: {{aptosNodeServiceAccessKey}}"
Example Response
{
"authentication_key" : "0x4d3e2cfa689883a76ea1600451e42691f1615153d4f44b89c92149afea3ceda3",
"sequence_number" : "51"
}
Response Data
Name | Type | Meaning |
---|---|---|
authentication_key | string | A hash of the concatenation of all the public keys of the signers involved in the account. This is to accommodate both single-signer and multi-sig accounts. |
sequence_number | string | The number of transactions that have been submitted and committed on-chain from the account. |
Next steps to build on Aptos! 🏗
- For an overview of our API docs and tutorials for each of our services, see our Developer Hub homepage.
- For tips on learning how to code in Aptos Move, see Aptos Move Developer Resources
- If there’s anything else you need, you can reach us at [email protected].
Updated 11 days ago