Asset Tokenization API
Create and manage tokenized assets via HTTP endpoints. For example:
POST /api/assets/tokenize
– Submit a new asset for tokenization. The payload would include owner info, asset details (type, value, jurisdiction, etc.), and chosen token parameters (name, total supply, etc.). Upon submission, the Tokery backend will initiate KYC (if not already done for that user) and the legal document generation. The API responds with a tracking ID for the process.GET /api/assets/{id}
– Retrieve status and details of a tokenization request or a minted asset. This could show steps completed (KYC, Legal, Minting) and return the minted token’s address once done.POST /api/assets/{id}/distribute
– (Planned) Distribute tokens to a list of wallet addresses (for example, if an owner wants to send shares to investors). This would take a list of Solana wallet addresses and amounts, and the backend would create the necessary transactions (ensuring each recipient is KYC-verified before transferring).
Last updated