Get a Fungible Token details created by user

Details of a created Fungible Token (ERC-20 token) by a user can be found using this method. The weightage for this API is 5.

API Specification

Get FT details

POST https://api.krypcore.com/api/v0/ft-manager/erc20-token

Created FT details can be found under the given instance.

Headers

NameTypeDescription

Authorization*

String

User Auth Key obtained from Dash

DappId

String

DappId

Request Body

NameTypeDescription

page

Number

Details of created FT to be retrieved for the given page No

contractAddress*

String

Details of ERC-20 contract address to be retrieve.

pageSize

Number

No of created FT details to be displayed per page

{
    "Data": {
        "_id": "65098759a42a151ae936d72f",
        "apiKey": "xxxxxx-xxxx-xxxx-xxxx-xxxxxx",
        "chainId": "80001",
        "contractAddress": "0xa9BCB7E413FfE96575390c6F44F54607b44F030a",
        "createdAt": "2023-09-19T11:34:49.482Z",
        "createdBy": "DEV_KRYP_11_20230919",
        "custodialWalletAccessToken": "xxxxx-xxxx-xxxx-xxxx-xxxxxxx",
        "decimal": 18,
        "ercStandard": "ERC20",
        "instanceRef": "xxx_xx_xx_xxxxxx",
        "isDefault": false,
        "premintAddress": "0x466e1862CFC80F216dc4126cc883D731520f36DE",
        "projectID": "xxx_xxxx_xxxx_xx_xxxxxxxx",
        "quantity": "100000000",
        "referenceId": "b6c67768-e33a-406a-be2a-fe73d03acfcf",
        "status": "SUCCESS",
        "subscriptionId": "xxxxxxxx",
        "tokenName": "KrypC Token",
        "tokenSymbol": "KC01",
        "txnHash": "0xce04f081d71e1fbf4b8680410f253248e9a175c8852c69d4a398e09d9279a2ab",
        "uniqueId": "FT-COL-qLJzsmueFIEDPFwSFOSmJiUD",
        "updatedAt": "2023-09-19T11:43:03.27Z",
        "walletAddress": "",
        "walletType": "non-custodial"
    },
    "Message": "Ok",
    "Status": "SUCCESS"
}

Take a look at how you might call this method using our official libraries, or via curl:

curl --location --request POST 'https://api.krypcore.com/api/v0/ft-manager/erc20-token' \
--header 'Authorization: xxxxxxxxxxxxxxxxx' \
--header 'DappId: xxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
  "contractAddress": "0xa9BCB7E413FfE96575390c6F44F54607b44F030a",
  "page": 0,
  "pageSize": 10
}'

Last updated