curl --request GET \
--url https://api.coinvoyage.io/v3/orders/{order_id}/payment-methods \
--header 'X-API-KEY: <api-key>'
{
"methods": [
{
"available": true,
"method": "CARD",
"minimum_amount": {
"amount": 100,
"unit": "USD"
},
"reason": "Card payments are only available in the EU and US"
}
]
}
orders
Get Payment Methods
GET
/
orders
/
{order_id}
/
payment-methods
Get Payment Methods
curl --request GET \
--url https://api.coinvoyage.io/v3/orders/{order_id}/payment-methods \
--header 'X-API-KEY: <api-key>'
{
"methods": [
{
"available": true,
"method": "CARD",
"minimum_amount": {
"amount": 100,
"unit": "USD"
},
"reason": "Card payments are only available in the EU and US"
}
]
}