Get Token Account

Retrieve token account information

Start for Free

Endpoint

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

Headers

Auth Bearer Token

Include your Arrow API key as a Bearer token in the Authorization header

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/v1/get-token-account   -H "Content-Type: application/json"   -H "Authorization: Bearer "   -d '{
    "owner_address": "De5osHj8G13s15r6WNCdsF4ZSJBGS6q1DRzNHHSBtvQ6",
    "token_address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
  }'

Sample Response

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