Token Issuance
Issue assets to wallets on testnet: ERC-20 for fungible balances, ERC-721 for NFTs, and ERC-1155 for semi-fungible tokens. Each endpoint accepts minimal input and returns transaction or issuance details you can track.
Issue NFT
POST /api/v1/nft/issue
cURL
curl -s -X POST "$FREEQ_API_URL/api/v1/nft/issue" \
-H "Authorization: Bearer $FREEQ_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"walletAddress":"0xWALLET","expiration":0}'
Issue ERC‑20
POST /api/v1/erc20/issue
cURL
curl -s -X POST "$FREEQ_API_URL/api/v1/erc20/issue" \
-H "Authorization: Bearer $FREEQ_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"walletAddress":"0xWALLET","amount":100}'
Issue ERC‑1155
POST /api/v1/erc1155/issue
cURL
curl -s -X POST "$FREEQ_API_URL/api/v1/erc1155/issue" \
-H "Authorization: Bearer $FREEQ_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"walletAddress":"0xWALLET","tokenId":1,"amount":10,"nonTransferable":false,"expiration":0,"data":"0x"}'