Skip to main content
POST
/
account
/
{address}
/
token-accounts
Create a Solana token account (ATA) for an account
curl --request POST \
  --url https://v1.orchestrator.rhinestone.dev/deposit-processor/account/{address}/token-accounts \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
}
'
{
  "ataAddress": "<string>",
  "created": true,
  "txSignature": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.rhinestone.dev/llms.txt

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

Headers

x-api-key
string
required

API key for authentication

Example:

"your-api-key"

x-api-version
string

API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.

Pattern: ^\d{4}-\d{2}\.[a-z0-9]+$
Example:

"2026-04.amazon"

Path Parameters

address
string
required

Ethereum address (0x followed by 40 hex characters)

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f5bE91"

Body

application/json
mint
string
required

Base58-encoded SPL token mint to create the Associated Token Account for

Example:

"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

Response

Token account exists (created now or previously)

ataAddress
string
required
created
boolean
required
txSignature
string