Get data of a certain FT contract

Fetch the FT contract information of a given address

Request
Security:
path Parameters
ft-address
required
string

FT Contract address

header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Responses
200
400
404
get/v2/contract/ft/{ft-address}
Request samples
curl -i -X GET \
  -u <username>:<password> \
  'https://th-api.klaytnapi.com/v2/contract/ft/{ft-address}' \
  -H 'x-chain-id: string'
Response samples
application/json
{
  • "address": "0x7d7c73a49321738101030e23a5bf30fc68287e26",
  • "decimals": 18,
  • "name": "SummerToken",
  • "symbol": "JUN",
  • "totalSupply": "0x52b7d2dcc80cd2e4000000",
  • "status": "completed",
  • "type": "ERC-20",
  • "createdAt": 1606127642,
  • "updatedAt": 1606385006,
  • "deletedAt": 0
}