Fees
Our fee schedule is available via the following API request.
POST /api/v1/fees
Required Parameters
Example Request
curl -X POST "https://api.coinchomp.com/api/v1/fees/" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"service": "auditCoin", "chain" : "solana"}'Example Response
{
"success": true,
"service": "auditCoin",
"chain" : "solana",
"feeSchedule": {
"baseFee": 0.00222
}
}Last updated