Fees
Our fee schedule is available via the following API request.
POST /api/v1/fees
Content Type: application/json
Required Parameters
chain (string) - The blockchain network. [ solana ]
service (string) - The service name. [ auditCoin | getMetas ]
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