LogoLogo
  • Introduction
  • Overview
    • What are cryptocurrencies
    • Why accept crypto
    • Our products
      • Payment Gateway
      • Earnings on deposit
      • Manual Invoices
      • Payment & Donation button
      • White Label
      • Affiliate program
      • Demo Shop
  • Getting started
    • Basics
      • What is an Invoice?
      • Accepting Payments
      • Withdrawing Your Funds from OMY Payments
      • Security and Transparency
  • API
    • Overview
    • Authentication
    • API Endpoints
      • Get Merchant Assets
      • Create Invoice
      • Create Invoice by Crypto
      • Get Invoice Data
      • Withdraw Asset
    • Callbacks
    • Common issues
  • No-code Integration
    • Overview
    • Getting Started with No‑Code Integration
  • How to Create Payment Links
  • Advanced Use Cases and Best Practices for No‑Code Integration
  • Legal
    • Terms of Use
Powered by GitBook
On this page
  1. API
  2. API Endpoints

Get Merchant Assets

Request:

GET /1.0/merchant/assets

Response (200 OK):

{
  "assets": [ // Merchant assets list
    {
      "id": "uuid", // Asset UUID
      "wallet": "0x0000000000000000000000000000000000000000", // Merchant asset wallet address
      "feePercent": "5", // Metchant asset fee in percent
      "feeUsd": "1", // Merchant asset fee in USD
      "balance": "0", // Merchant asset balance
      "amountInUsd": "0", // Merchant asset balance in USD
      "crypto": { // Asset cryto
        "id": "uuid", // Crypto UUID
        "title": "Tether USD", // Crypto title
        "symbol": "USDT" // Crypto symbol
        "contractAddress": "0x0000000000000000000000000000000000000000" // Crypto contract address
        "decimals": 6 // Crypto decimals
        "logoURI": "https://..." // Crypto logo URI
      },
      "network": { // Asset network
        "id": "UUID", // Network UUID
        "title": "Ethereum", // Network title
        "symbol": "ETH", // Network symbol
        "chainId": "1" // Network chain ID
        "chainType": "evm" // Network type
      },
      "createdAt": "2025-01-01 00:00:00" // Asset datetime creation (UTC+0)
    }
  ]
}

Error Response (500 Internal Server Error):

{
    "success": false,
    "message": "Internal Server Error",
    "statusCode": 500
}
PreviousAPI EndpointsNextCreate Invoice

Last updated 13 days ago