CoinChomp
  • General Info
    • What is CoinChomp?
    • Fees
  • API
    • Getting Started
    • Authentication
    • Request Status
    • Fees
  • Telegram Bot
    • Getting Started
Powered by GitBook
On this page
  • POST /api/v1/fees
  • Required Parameters
  • Example Request
  • Example Response
  1. API

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
    }
}
PreviousRequest StatusNextGetting Started

Last updated 3 months ago