OnlyFans API
Banking

List Available Payout Systems

Returns a list of available payout systems for the account, including details such as payout method codes, titles, descriptions, minimum payout amounts, processing times, and the currently selected payout method.

GET
/api/{account}/banking/available-payout-systems
AuthorizationBearer <token>

Get your API Key from OnlyFansAPI Console - https://app.onlyfansapi.com/api-keys

In: header

Path Parameters

accountstring

The Account ID

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/banking/available-payout-systems"
{
  "data": {
    "payouts": [
      {
        "code": "paxum",
        "title": "Paxum (e-wallet)",
        "subtitle": "Receive payouts to a Paxum wallet",
        "minPayoutSumm": 20,
        "payoutTime": "1 business day",
        "description": "No limits on number of daily withdrawals (No maximum)\nWithdraw money from your Paxum wallet either via bank transfer or on to a Paxum Prepaid Mastercard\n<a href=\"https://www.paxum.com/services/receive-payments\">click here</a>",
        "fields": {},
        "fieldsOrder": [],
        "uiMapping": {}
      },
      {
        "code": "cosmopayment",
        "title": "Cosmo Payment",
        "subtitle": "Receive payouts directly to your Cosmo Prepaid Mastercard",
        "minPayoutSumm": 20,
        "payoutTime": "1 Business day",
        "description": "No limits on number of daily withdrawals (No maximum)\nWithdraw money from your Cosmo Prepaid Mastercard\nFor more information on Cosmo Payment, go to www.cosmopayment.com/getpaid",
        "fields": {},
        "fieldsOrder": [],
        "uiMapping": {}
      },
      {
        "code": "securionpay",
        "title": "VISA Direct Transfer",
        "subtitle": "Receive payouts directly to your VISA debit or credit card",
        "minPayoutSumm": 50,
        "payoutTime": "1-2 business days",
        "description": "Payouts are transferred directly to your VISA Credit or VISA Debit card. ",
        "fields": {},
        "fieldsOrder": [],
        "uiMapping": {}
      },
      {
        "code": "bank_ebics_sepa",
        "title": "International Transfer (SEPA)",
        "subtitle": "Receive payouts directly to your bank account via SEPA payments",
        "minPayoutSumm": 20,
        "payoutTime": "1-3 business days",
        "description": "No limits on number of daily withdrawals (No maximum)\nPayouts are paid directly into your bank account via the SEPA banking system\nAny SEPA bank account",
        "fields": {},
        "fieldsOrder": [],
        "uiMapping": {}
      },
      {
        "code": "skrill",
        "title": "Receive your funds via Skrill",
        "subtitle": "Receive payouts to your Skrill account",
        "minPayoutSumm": 20,
        "payoutTime": "1 business day",
        "description": "Receive your funds via Skrill",
        "fields": {},
        "fieldsOrder": [],
        "uiMapping": {}
      }
    ],
    "payoutCode": "bank_ebics_sepa"
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 999999996,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 10000000,
      "limit_day": 50000,
      "remaining_minute": 9999999,
      "remaining_day": 49944
    }
  }
}