Skip to main content
POST
/
api
/
v1
/
tokenization
/
collections
/
{id}
/
tokens
/
mint
Mint Tokens
curl --request POST \
  --url https://sandbox.oumla.com/api/v1/tokenization/collections/{id}/tokens/mint \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "addressId": "<string>",
  "clientShare": "<string>",
  "to": "<string>",
  "metadata": {},
  "useGasless": true,
  "fee": "<string>",
  "feeLevel": "<string>"
}
'
{
"mint": {
"workflowId": "<string>",
"status": "<string>"
}
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain your API key from the dashboard.

Headers

x-sdk-version
string
default:1.0.0

SDK version header

Path Parameters

id
string
required

Collection ID

Body

application/json

Request body for mint tokens

Mint token request object

addressId
string
required
clientShare
string
required
to
string
required
metadata
object
useGasless
boolean
fee
string
feeLevel
string

Response

Token minting workflow started

mint
object