1. Deposit
Payland API v2
  • API Response Codes and Messages
  • Credit Card Info & Test Cards
  • Withdraw Info
  • Deposit
    • Bank List
      GET
    • Create Deposit (Bank Transfer)
      POST
    • Create Deposit (Credit Card)
      POST
    • Create Deposit (Crypto)
      POST
    • Check Deposit Status
      GET
  • Withdraw
    • Create Withdraw (Crypto)
      POST
    • Create Withdraw (Bank Transfer)
      POST
    • Check Withdrawal Status
      GET
  • Callback
    • Callback Request
      POST
  1. Deposit

Bank List

GET
/api/v2/banks

Request

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.payland.info/api/v2/banks' \
--header 'x-api-key: {{api_key}}' \
--header 'x-secret-key: {{secret_key}}' \
--header 'Accept: application/json'
Response Response Example
{
    "success": true,
    "message": null,
    "data": [
        {
            "id": 4,
            "name": "Akbank"
        },
        {
            "id": 17,
            "name": "Aktif Yatırım Bankası"
        },
        {
            "id": 19,
            "name": "Albaraka Türk"
        }
    ],
    "code": 200
}
Modified at 2026-05-12 06:38:48
Previous
Withdraw Info
Next
Create Deposit (Bank Transfer)
Built with