Tokenization Suggest
Sends a free-form description of an asset to the tokenization assistant (backed by Claude) and returns suggested field values for creating a token. The response can be used to pre-fill the Create Token form.
Request
POST /v2/admin/tokens/nodes/{nodeID}/tokenization/suggest
Parameters
| Name | Type | In | Description |
|---|---|---|---|
nodeID | string | path | Required. The ID of the node the token will belong to |
prompt | string | body | Required. Natural-language description of the asset to tokenize |
Headers
| Name | Description |
|---|---|
Authorization | Required. Bearer token for authentication |
Content-Type | Required. Must be application/json |
Example
curl --request POST \
--url '\{\{baseUrl\}\}/v2/admin/tokens/nodes/67d6c447f47ff3adafda700d/tokenization/suggest' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "12 month lease contract on a commercial real estate in Istanbul valued at 250,000 USDT"
}'
Response
{
"suggested_name": "Istanbul Commercial Lease #1",
"suggested_description": "12-month lease on a commercial real estate asset located in Istanbul...",
"suggested_token_name": "istLease",
"suggested_token_symbol": "ICL",
"suggested_total_value": 250000,
"suggested_max_supply": 2500,
"suggested_salable_percentage": 80,
"prompt": "..."
}
Response Fields
| Field | Type | Description |
|---|---|---|
suggested_name | string | Suggested display name for the token |
suggested_description | string | Suggested long-form description |
suggested_token_name | string | Suggested short token name |
suggested_token_symbol | string | Suggested ticker-style token symbol |
suggested_total_value | number | Suggested total monetary value |
suggested_max_supply | integer | Suggested max token supply |
suggested_salable_percentage | number | Suggested salable percentage (0-100) |
prompt | string | Echo of the submitted prompt (may be omitted) |
Status Codes
| Status Code | Description |
|---|---|
| 200 | Success |
| 400 | Bad Request - nodeID missing or prompt invalid |
| 401 | Unauthorized - Invalid or missing authentication token |
| 500 | Internal Server Error - Upstream model failure |