cURL
curl --request POST \ --url https://api.context.markets/v2/balance/mint-test-usdc \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "address": "0x1111111111111111111111111111111111111111", "amount": "100.0" } '
{ "hash": "0x1111111111111111111111111111111111111111111111111111111111111111" }
API key passed as Bearer token
EVM address
^0x[a-fA-F0-9]{40}$
"0x1111111111111111111111111111111111111111"
USDC amount as a decimal string. Must be greater than 0 and at most 10000.
^\d+(\.\d{1,6})?$
"100.0"
Mint transaction hash
32-byte hex hash
^0x[a-fA-F0-9]{64}$
"0x1111111111111111111111111111111111111111111111111111111111111111"