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. [ volumeBot | tokenLaunch ]

Example Request

curl -X POST "https://api.coinchomp.com/api/v1/fees/" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"service": "volumeBot", "chain" : "solana"}'

Example Response

{
    "success": true,
    "service": "volumeBot",
    "chain" : "solana",
    "feeSchedule": {
        "baseFee": 0.00222,
        "perBotFee": 0.000222,
        "perMinuteFee": 0.000222
    }
}

Last updated