Developer Docs
Search…
Developer Docs
Introduction
Network Details
Developer Resources & Tools
Fuse API
Overview
Token API
Economy API
Wallet API
Jobs API
Admin API
Trade API
JSON-RPC API
Fuse Services
Fuse Studio
TheGraph
Earn SDK
WalletConnect on Fuse
Network
How to run network nodes
How to become a validator
Fuse Consensus
Network Upgrades
Important Smart Contracts
Fuse Token
Bridges
Fuse Dollar
Major Deployed Contracts
Fuse Wallet
Getting Started
Powered By
GitBook
Token API
Token API is used to fetching tokens details and register new tokens to the platform
Base URL:
https://studio.fuse.io/api/v1
Adding new token
Back to top
Tokens are compatible with the ERC20 standard, and they also can be burnable/mintable. Tokens are an important part of the community economy.
1
GET /tokens/:address
Copied!
Parameter Parameters
Name
Type
Description
address
String
Token address to add
networkType
String
The network of the token (body parameter)
Examples
Adding DAI token on mainnet:
1
POST /tokens/0x6b175474e89094c44da98b954eedeac495271d0f
2
body: { networkType: mainnet }
Copied!
Success 200
Name
Type
Description
address
String
Token's address
name
String
Token's name
symbol
String
Token's symbol
tokenURI
String
IPFS URI points to token metadata
totalSupply
String
Token's total supply
owner
String
Token's owner
factoryAddress
String
Factory contract that created the token
blockNumber
String
Block number of the token's creation
tokenType
String
Token type: basic/mintableBurnable/imported
networkType
String
Network type where the token is issued: mainnet/ropsten/fuse
Fetch token
Back to top
Tokens are compatible with the ERC20 standard, and they also can be burnable/mintable. Tokens are an important part of the community economy.
1
GET /tokens/:address
Copied!
Parameter Parameters
Name
Type
Description
address
String
Token address
Success 200
Name
Type
Description
address
String
Token's address
name
String
Token's name
symbol
String
Token's symbol
tokenURI
String
IPFS URI points to token metadata
totalSupply
String
Token's total supply
owner
String
Token's owner
factoryAddress
String
Factory contract that created the token
blockNumber
String
Block number of the token's creation
tokenType
String
Token type: basic/mintableBurnable/imported
networkType
String
Network type where the token is issued: mainnet/ropsten/fuse
Fetch tokens
Back to top
1
GET /tokens
Copied!
Parameter Parameters
Name
Type
Description
networkType
String
mainnet/ropsten/fuse
page
Number
Page number for pagination
Success 200
Name
Type
Description
-
Object[]
List of Tokens. See GetToken endpoint for token fields
Fetch tokens by owner
Back to top
1
GET /tokens/owner/:owner
Copied!
Parameter Parameters
Name
Type
Description
owner
String
account address of the token owner
networkType
String
mainnet/ropsten/fuse
Success 200
Name
Type
Description
-
Object[]
List of Tokens. See GetToken endpoint for token fields
Fuse API - Previous
Overview
Next - Fuse API
Economy API
Last modified
1mo ago
Copy link
Contents
Adding new token
Fetch token
Fetch tokens
Fetch tokens by owner