Skip to main content
POST
https://api.altude.so
/
api
/
Account
/
create
Create Account
curl --request POST \
  --url https://api.altude.so/api/Account/create \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --data '
{
  "signedTransaction": "<string>"
}
'
{
  "status": "Queued",
  "message": "Account creation transaction queued successfully.",
  "signature": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d" 
}
Create a new Solana account by submitting a signed transaction.

headers

X-API-Key
string
required
The APi key created from the Altude dashboard

Request Body

signedTransaction
string
required
The base64-encoded signed transaction to create the account

Response

success
boolean
Indicates if the account creation was successful
signature
string
The transaction signature
{
  "status": "Queued",
  "message": "Account creation transaction queued successfully.",
  "signature": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d" 
}