Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.turnkey.com/llms.txt

Use this file to discover all available pages before exploring further.

organizationId
string
required
Unique identifier for a given Organization.
address
string
required
The Ethereum address to query nonces for.
caip2
enum<string>
required
Enum options: eip155:1, eip155:11155111, eip155:8453, eip155:84532, eip155:137, eip155:80002, eip155:42161, eip155:421614
nonce
boolean
Whether to fetch the standard on-chain nonce.
gasStationNonce
boolean
Whether to fetch the gas station nonce used for sponsored transactions.
A successful response returns the following fields:
nonce
string
The standard on-chain nonce for the address, if requested.
gasStationNonce
string
The gas station nonce for sponsored transactions, if requested.
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_nonces \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>",
    "address": "<string>",
    "caip2": "<eip155:1>",
    "nonce": "<boolean>",
    "gasStationNonce": "<boolean>"
}'
{
  "nonce": "<string>",
  "gasStationNonce": "<string>"
}