Supported Fiat

list of supported fiat

The Supported Fiat Currencies endpoint provides a list of fiat currencies that are available for transactions through your system. You can retrieve details such as the currency's name, symbol, and status.

GET https://api.payhubix.com/v1/payment/currencies/Fiat/

Request Header:

Name
Type
Description

X-Api-Key*

string

Your API key for authentication and authorization.

Response:

Name

Type

Description

currency_id*

integer

Unique identifier of the currency.

currency_name*

string

Name of the currency (e.g., Dollar, Euro).

currency_status

string

Status of the Fiat (whether it is Enable or Disable).

currency_symbol*

string

Symbol of the currency (e.g., USD, EUR).

currency_type*

string

Type of the currency (typically "Fiat").

precision*

integer

Decimal precision of the currency.

withdrawable*

bool

Whether the currency can be withdrawn.

paymentable*

bool

Whether the currency can be used for payments.

status*

string

Current status of the currency (typically "Enable").

An example of response:

{
    "error": false,
    "number": 0,
    "message": [
        {
            "currency_id": 2,
            "currency_name": "United States Dollar",
            "currency_status": "Enable",
            "currency_symbol": "USD",
            "currency_type": "Fiat",
            "precision": 3,
            "withdrawable": true,
            "paymentable": true,
            "status": "Enable"
        }
    ]
}

Example codes:

curl --location 'https://api.payhubix.com/v1/payment/currencies/Fiat/' \
--header 'X-Api-Key: YOUR_API_KEY'

Note: Please make sure to replace YOUR_API_KEY in the code snippets with your actual merchant API key

Last updated