Skip to main content
POST
/
balance
/
mint-test-usdc
Mint test USDC
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"
}

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Body

application/json
address
string
required

EVM address

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x1111111111111111111111111111111111111111"

amount
string
required

USDC amount as a decimal string. Must be greater than 0 and at most 10000.

Pattern: ^\d+(\.\d{1,6})?$
Example:

"100.0"

Response

Mint transaction hash

hash
string
required

32-byte hex hash

Pattern: ^0x[a-fA-F0-9]{64}$
Example:

"0x1111111111111111111111111111111111111111111111111111111111111111"