Skip to main content
GET
/
api
/
v1
/
partner
/
payment-methods
cURL
curl --request GET \
  --url https://api.money.orki.io/api/v1/partner/payment-methods \
  --header 'X-ORKI-API-KEY: <api-key>'
{
  "msg": "Success",
  "data": {
    "payment_methods": [
      {
        "orki_id": "sepa_bank_transfer",
        "logo": "https://d31sk3i6y53c7h.cloudfront.net/assets/payment-methods/sepa_instant.svg",
        "name": "SEPA Bank Transfer",
        "tagline": "European Bank Transfers"
      },
      {
        "orki_id": "credit_debit_card",
        "logo": "https://d31sk3i6y53c7h.cloudfront.net/assets/payment-methods/card.svg",
        "name": "Card Payment",
        "tagline": "Visa, MasterCard, etc."
      }
    ]
  },
  "success": true,
  "code": 200
}

Authorizations

X-ORKI-API-KEY
string
header
required

Query Parameters

fiat
string
required

the fiat

Example:

"EUR"

type
enum<string>

the trade type.

Available options:
BUY,
SELL
Example:

"SELL"

Response

200 - application/json

Successful response

msg
string
Example:

"Success"

data
object
success
boolean
Example:

true

code
integer
Example:

200