Actalink Docs
Acta billings/Subscription

Tokens

Get the list of supported ERC20 tokens by Actalink.

GET
/api/tokens

Authorization

acta-session<token>

Session key to identify user session.

In: cookie

curl -X GET "http://localhost:4000/api/tokens" \
  -H "acta-session: <token>"

List of supported tokens.

{
  "data": [
    {
      "id": 1,
      "address": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",
      "symbol": "USDC",
      "name": "USDC",
      "decimals": 6,
      "chainId": 137,
      "logoURI": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png",
      "coingeckoId": "usd-coin"
    }
  ]
}