Paymento Documention
  • 👋Project Overview
  • Overview
    • 💡Mission and Vision
    • 📜Whitepaper
      • Problem Statement
      • Solution
      • Architecture and Technology
      • Business Model
      • Financial Sustainability
      • Tokenomics
      • Road Map
  • Accept Crypto Payments
    • ⭐Get Started
    • 🔐API Key Generation
      • How to Export xPub Keys
    • 🌐Payment Integration
    • 🛠️Prebuilt Payment Plugins
    • 🐞Testing and Simulation
      • Creating a Testnet Wallet
      • Accquire Testnet Assets
      • Creating Transactions
  • API Documention
    • API Overview
    • Payment Request
    • Payment Callback
    • Payment Verify
    • Additional APIs
      • Manage Payment Settings
      • Get List of Accepted Coins
  • Fee & Pricing
Powered by GitBook
On this page
  1. API Documention
  2. Additional APIs

Get List of Accepted Coins

This API allows you to retrieve a list of cryptocurrencies that your merchant account is currently set up to accept. This can be particularly useful for dynamically updating your payment options based on your current Paymento settings.

Create a new user

GET https://api.paymento.io/v1/payment/coins

Headers

Name
Value

Api-Key

Your Merchant API Key

Content Type

application/json

Accept

text/plain

Response

{
  "success": true,
  "message": "",
  "body": [{
    "name": "bitcoin",
    "shortcut":  "btc"
  },
  {
    "name": "ethereum",
    "shortcut":  "eth"
  }]
}
{
  "error": "Invalid request"
}
PreviousManage Payment SettingsNextFee & Pricing

Last updated 8 months ago