Cedar Partners API
  1. Information
Cedar Partners API
  • Introduction
  • Getting Started
    • Data Model
    • Transaction Lifecycle
    • Authentication
    • API Environments
    • Webhooks Configuration
  • Development Tools
    • API Debugging
    • Error Codes
    • File URLs
  • API Documentation
    • Information
      • Get Countries
        GET
      • Get Currencies
        GET
    • Merchants
      • Create Merchant
      • Update Merchant
      • Get Merchant by ID
      • Get Merchants with Pagination
    • Onboarding
      • Onboarding Lifecycle
      • Get Legal Agreements
      • Accept Legal Agreements
      • Submit Merchant Onboarding
    • Receiver Accounts
      • Create Receiver Account
      • Update Receiver Account
      • Get Receiver Account by ID
      • Get Receiver Accounts with Pagination
    • Transactions
      • Payout (Crypto-to-Fiat)
        • Calculate FX Rate
        • Create Payout Transaction
        • Get Payout Transaction by ID
        • Get Payout Transactions with Pagination
        • Approve Payout Transaction Quote
        • Approve Payout Transaction Deposit
        • Cancel Payout Transaction
      • End to End (Fiat-to-Fiat)
        • Calculate FX Rate
        • Create End to End Transaction
        • Get End to End Transaction by ID
        • Get End to End Transactions with Pagination
        • Approve End to End Transaction Quote
        • Approve End to End Transaction Deposit
        • Cancel End to End Transaction
      • Collections (Fiat-to-Fiat)
        • Calculate FX Rate
        • Create Collections Transaction
        • Get Collections Transaction by ID
        • Get Collections Transactions with Pagination
        • Approve Collections Transaction Quote
        • Approve Collections Transaction Deposit
        • Cancel Collections Transaction
      • Get Payout Confirmation by Transaction ID
        GET
    • Utilities
      • Upload File
  1. Information

Get Currencies

Live Partners API
https://partners-api.service.cedar.money/bpapi
Live Partners API
https://partners-api.service.cedar.money/bpapi
GET
https://partners-api.service.cedar.money/bpapi
/v1/currency/
Retrieve all the available currencies in the system and their metadata. For example: wether the system supports sending funds from and/or to that currency.

Request

Header Params
x-api-key
string 
required
Example:
CEDAR_DEV_api_key_b0ab5b29-caa7-4fa6-9f94-51dbc145e9ed
x-api-secret
string 
required
Example:
CEDAR_DEV_api_secret_YtGc1iMIdVaSlE3yeBxS3Y6RY3j933s3YdTloLZjY9ar7T5vuVTGPovoRplo7PSZbYg2RLV9yJ3ZT7BctcxxPSR5pQpEMndj3EJB

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://partners-api.service.cedar.money/bpapi/v1/currency/' \
--header 'x-api-key: CEDAR_DEV_api_key_b0ab5b29-caa7-4fa6-9f94-51dbc145e9ed' \
--header 'x-api-secret: CEDAR_DEV_api_secret_YtGc1iMIdVaSlE3yeBxS3Y6RY3j933s3YdTloLZjY9ar7T5vuVTGPovoRplo7PSZbYg2RLV9yJ3ZT7BctcxxPSR5pQpEMndj3EJB'

Responses

🟢200OK
application/json
Body
array of:
name
string 
required
Currency Name
symbol
string 
required
Currency Symbol
currencyType
string 
required
Fiat or Crypto
sendFrom
boolean 
required
Whether the currency allowed to be the transaction "From Currency"
sendTo
boolean 
required
Whether the currency allowed to be the transaction "To Currency"
Example
[
    {
        "name": "United States Dollar",
        "symbol": "USD",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": true
    },
    {
        "name": "Euro",
        "symbol": "EUR",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": true
    },
    {
        "name": "USD Coin",
        "symbol": "USDC (ERC-20)",
        "currencyType": "CRYPTO",
        "sendFrom": true,
        "sendTo": false
    },
    {
        "name": "UAE Dirham",
        "symbol": "AED",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": false
    },
    {
        "name": "Afghan Afghani",
        "symbol": "AFN",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": false
    },
    {
        "name": "Albanian Lek",
        "symbol": "ALL",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": false
    },
    {
        "name": "Armenian Dram",
        "symbol": "AMD",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": false
    },
    {
        "name": "Netherlands Antillian Guilder",
        "symbol": "ANG",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": false
    },
    {
        "name": "Angolan Kwanza",
        "symbol": "AOA",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": false
    },
    {
        "name": "Argentine Peso",
        "symbol": "ARS",
        "currencyType": "FIAT",
        "sendFrom": false,
        "sendTo": false
    }
]
🟠400Error
Modified at 2025-03-04 12:33:57
Previous
Get Countries
Next
Create Merchant
Built with