Skip to main content
POST
/
api
/
fund
/
verify
Verify an on-chain funding transaction
curl --request POST \
  --url https://mag3nt.com/api/fund/verify \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tx_hash": "<string>",
  "network": "eip155:8453",
  "asset": "USDC"
}
'
{
  "success": true,
  "funded": 123,
  "balance": {
    "total_funded": 123,
    "total_allocated": 123,
    "total_spent": 123,
    "total_withdrawn": 123,
    "available": 123,
    "network": "<string>",
    "asset": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key prefixed with 'Bearer sx_live_...'

Body

application/json
tx_hash
string
required

On-chain transaction hash to verify

network
string
default:eip155:8453
asset
string
default:USDC

Response

Funding verified or pending

success
boolean
status
enum<string>
Available options:
confirmed,
pending
funded

Amount credited from this transaction

balance
object