ALLINONE
  1. API
ALLINONE
  • AIO Solution Brief
  • Overview
  • Getting Started
  • Supported Blockchain Networks and Tokens
  • Subaddresses and collection
  • Fund Pool and Withdrawal
  • Funds flow
  • Registration
  • Subaddress transactions
  • API
    • API Basics
    • API Encryption Transmission
    • Create Sub-Address
      POST
    • Create Multiple Subaddresses
      POST
    • Get Sub-Address List
      GET
    • Get Sub-Address Transaction
      GET
    • Create Withdraw Transaction
      POST
    • Direct Withdrawal Transaction
      POST
    • Get Withdraw Transaction details
      GET
    • Get Supported Blockchains and Tokens
      GET
  • Description
    • Collection Instructions
    • Withdrawal Instructions
    • 2-FA Authentication
    • TG Bot
    • Webhook
  • User Experience
    • Overview
    • Registration/Signup
    • Login/Signin
    • Enable TOTP
    • Reset Forgotten Password
    • Subaddress
    • Subaddress transactions
    • Collection Address
    • Fund Pool Addresses
    • Gas Management addresses
    • Settings
      • API Keys and Data encryption
      • IP Whitelisting in API Keys
      • IP Whitelisting - Dashboard
      • Webhooks
  • 用户体验
    • 注册
    • 登录
    • TOTP
    • 忘記密碼
    • 子地址
    • 子地址详情
    • 收款地址概览 (Collection Addresses)
    • 资金池概览 (FundPool Addresses)
    • 燃气管理地址 (Gas Management Addresses)
    • 设置
      • API密钥和数据加密
      • API 密钥中的 IP 白名单
      • AIO仪表板IP白名单
      • 用于通知的 Webhooks
  1. API

Get Sub-Address Transaction

Prod Env
https://api.aio.cash
Prod Env
https://api.aio.cash
GET
/user-addrs/txs

Request

Authorization
Add parameter in header
apikey
Example:
apikey: ********************
Query Params
chain
string 
required
Allowed values:
ETHEREUM
BITCOIN
LITECOIN
TRON
OPTIMISM
ARBITRUM
ARBITRUM_NOVA
Example:
ETHEREUM
addr
string 
optional
page
integer 
optional
Example:
1
size
integer 
optional
max size = 100
Example:
30

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.aio.cash/user-addrs/txs?chain=ETHEREUM&addr&page=1&size=30' \
--header 'apikey;'

Responses

🟢200Success
application/json
Body
success
boolean 
required
API Normal response flag
Default:
true
msg
string 
required
Response result message
Default:
ok
data
object 
required
page
integer 
required
size
integer 
required
max_page
integer 
required
data
array[object (TransactionData) {9}] 
required
Example
{
  "success": true,
  "data": {
    "page": 1,
    "size": 30,
    "max_page": 1,
    "total": 3,
    "data": [
      {
        "chain": "ETHEREUM",
        "token": "ETH",
        "hash": "09f48564be8272b922b316325a717ff64886cb007f2397e980e74525bdf4f555",
        "addr": "0xfdF03d452906B57C7e68226e728809C8A3a02F6B",
        "typr": "receive",
        "from_addr": "0x342bEeF2685576570e94c89937E9F2C1c97D78BC",
        "to_addr": "0xfdF03d452906B57C7e68226e728809C8A3a02F6B",
        "amount": "21.4",
        "timestamp": 1706079748333
      }
    ]
  },
  "msg": "ok"
}
🟠403Authentication error
🟠422Parameter error
🟠429Rate Limit Error
Previous
Get Sub-Address List
Next
Create Withdraw Transaction
Built with