🇬🇧
Yativo Documentation
Spanish
English
English
  • Yativo
  • Introduction to Yativo
    • Financial Infrastructure
    • About Us
  • Dashboard
  • Business Plans
  • Getting Started with Yativo API
  • Yativo API Glossary
  • API reference
    • Misc.
      • Countries
      • States
      • City
  • Security and Authentication
    • Security
    • Authentication
    • Idempotency in API Requests
  • Environment
    • Environments
  • Notifications
    • Webhook
  • Compliance
    • Verification
      • KYC
      • KYB
      • KYC/KYB Update
      • KYC Status
      • Global Business Search
    • Supported Jurisdiction
    • Supported Countries, Currencies and Payment Method
  • User Management
    • Customer
      • Get Customers
      • Retrieve customer
      • Add Customer
  • Payments
    • Currencies
    • Crypto Wallets
      • Generate Wallet Address
      • Fetch Wallet Address
      • Crypto Deposit History
      • Single crypto deposit history
    • Payout
      • Payout
      • Get Payouts
      • Get Payout
      • Beneficiaries
        • Get Beneficiaries
        • Add Beneficiary Payment Details
        • Update Beneficiary
        • Archive Beneficiary
        • Add Beneficiary
    • Payin
    • Virtual Cards
      • Supported Currency, Country
      • Create card
      • Fetch card
      • Top up card
      • Get Transactions
      • Freeze and Unfreeze Card
    • Virtual Accounts
      • Create VIrtual Accounts
        • USD Virtual Account
        • Mexico Virtual Account
        • Brazil PIX QR
      • Virtual Account Management
      • Transaction History
  • Foreign Exchange
    • Exchange Rate
      • Request Quote
  • Transactions
    • Transaction Summary
    • Get Single Transaction
  • Crypto System
    • Yativo Crypto Platform API
Powered by GitBook
On this page
  1. Crypto System

Assets

Overview

Yativo provides access to supported crypto assets, including their market prices, to enable trading, payments, or value tracking.

Use Case

  • Market Rates: Use real-time prices to display crypto asset values to users.

  • Asset Listings: Provide a dropdown of supported assets during wallet creation.

Endpoints

List All Assets

  • URL: GET /api/v1/assets

  • Description: Fetches a list of all supported assets.

  • Response Example:

  • [
        {
            "symbol": "BTC",
            "name": "Bitcoin",
            "type": "cryptocurrency"
        },
        {
            "symbol": "ETH",
            "name": "Ethereum",
            "type": "cryptocurrency"
        }
    ]

Get Market Prices

  • URL: GET /api/v1/assets/prices

  • Description: Fetches the current market price of a specified asset.

  • Query Example: ?asset_symbol=BTC

  • Response Example:

  • {
        "symbol": "BTC",
        "price_usd": "28000.00"
    }
  • Implementation Context:

    • Use this endpoint to show users the equivalent value of their wallet balance in fiat currency.

    • Integrate price feeds for features like live trading or portfolio tracking.

Last updated 5 months ago