YATORI
DOCS
Solana Transactions Token TransfersGet Token Account

Get Token Account

Retrieve token account information

Start for Free

Endpoint

POST https://arrow-api.yatori.io/get-token-account

Headers

x-api-key

Your Arrow API key

stringrequired

Parameters

owner_address

The wallet address that owns the token account

stringrequired

token_address

The mint address of the token

stringrequired

cURL Request

curl -X POST https://arrow-api.yatori.io/get-token-account \
  -H "Content-Type: application/json" \
  -H "x-api-key: " \
  -d '{
    "owner_address": "De5osHj8G13s15r6WNCdsF4ZSJBGS6q1DRzNHHSBtvQ6",
    "token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
  }'

Sample Response

{
  "data": "H6ofiCoVjpvB8WTuMwNGHaiNTGCmsCfrMFVazM5T5Z7W",
  "status": "Associated token account found successfully"
}