1Money Network
  • Getting Started
  • Overview
  • Developer Guide
  • Quick Start
  • User Guides
    • Custodians & Centralized Exchanges (CEXs)
    • Issuers
  • Validators
  • Integrations
    • Overview
    • Network Access
    • SDKs
      • Typescript
        • Get Started
        • API Methods
      • Golang
        • Get Started
        • API methods
      • Rust
    • REST APIs
      • Chains
        • Get Chain Id
      • Accounts
        • Get account by token
        • Get account nonce
      • Tokens
        • Issue token
        • Get token metadata
        • Update token metadata
        • Grant authority
        • Mint
        • Burn
        • Managelist
        • Pause/Unpause
      • Checkpoints
        • Get the latest Checkpoint number
        • Get checkpoint by number
        • Get checkpoint by hash
      • Transactions
        • Get transaction by hash
        • Get transaction receipt by hash
        • Submit payment
        • Submit cancellation
        • Estimate fee
    • Websocket
      • Subscribing & Unsubscribing
      • Retrieving Transaction Details
      • Keeping the connection alive
      • Stream | Checkpoints
    • Data Dictionary
      • Transaction Types
        • TokenCreate
        • TokenTransfer
        • TokenGrantAuthority
        • TokenRevokeAuthority
        • TokenBlacklistAccount
        • TokenWhitelistAccount
        • TokenMint
        • TokenBurn
        • TokenCloseAccount
        • TokenPause
        • TokenUnpause
        • TokenUpdateMetadata
          • TokenMetadata Structure
            • MetaDataKeyValuePair
        • Other Transaction Types (WiP)
  • Core Concepts
    • The 1Money Protocol
    • System Components
    • Account Model
    • Token Authority
    • Transactions and Instructions
    • Implementation and usability considerations
    • Security
Powered by GitBook
On this page
  1. Integrations
  2. REST APIs
  3. Accounts

Get account by token

PreviousAccountsNextGet account nonce

Last updated 2 months ago

get
Query parameters
addressstringRequired

Address of the account to lookup associated token account for

Example: 0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC74ff3
tokenstringRequired

Token address to lookup associated token account for

Example: 0x2cd8999Be299373D7881f4aDD11510030ad1412F
Responses
200Success
application/json
400
Client error
application/json
500
Internal server error
application/json
get
GET /v1/accounts/token_account HTTP/1.1
Host: api.testnet.1money.network
Accept: */*
{
  "balance": "1500000000",
  "nonce": 0,
  "token_account_address": "0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC742Ab"
}