ZEDPAY
API - Version 1
Base URL:
Production Environment: https://zed-pay.com
Test Environment: https://test.zed-pay.com
Module:
All
Client
General
+ Account
post
/api/v1/account/open
Open a new account for a user.
Send token as "Authorization" in your request header.
{ "customer_id": 107, "currency_id": 1 }
{ "id": 74, "success": true, "message": "New account created.", "value": null }
post
/api/v1/account/change
Change account status.
Send token as "Authorization" in your request header.
{ "id": 1, "status": "Closed" }
{ "id": 75, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/account/delete
Delete an account.
Send token as "Authorization" in your request header.
{ "id": 126 }
{ "id": 76, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/account/list
Get a list of accounts. All filters are optional.
Send token as "Authorization" in your request header.
?customer_id=1&account_id=2¤cy=EUR&update_crypto_balances=true&total_currency=USD,BTC
{ "total": [ { "Key": "USD", "Value": "4,914.934867" }, { "Key": "BTC", "Value": "0.204167" } ], "id": 77, "success": true, "message": "Total: 2,937.31 USD, 0.14 BTC", "value": [ { "id": 2, "date_time": "21/05/2022", "customer": { "id": 127, "reg_date": "20/05/2022", "first_name": "Alex", "last_name": "Doe", "gender": "Unknown", "birth_date": "", "customer_type": "Individual", "email": "it@zed-pay.com", "mobile": "", "phone": "", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "", "address": "", "avatar": "/files/upload/user.png", "remark": "", "documents": [ { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220520-143027-127-0.png", "status": "Accepted", "comment": "Thank you" }, { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220520-143027-127-1.png", "status": "Rejected", "comment": "" } ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_id": "", "whatsapp": false, "app": true, "sms": false, "email": false }, "otp_enabled": true, "status": "Verified" }, "currency_id": 8, "currency_code": "BTC", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 0, "address": "0xd3a576ad3c608a81c5e5beb715421879ce85d538", "address_balance": 0.0, "last_update": "2022-07-14T03:27:15.8409726-04:00" }, { "blockchain": 11, "address_index": 0, "address": "TZ2i7sVT2HcXnmWyBaVa87zKWVeWWCdnkq", "address_balance": 0.0, "last_update": "2022-07-14T03:27:15.8409726-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/btc.png", "balance": 0.0, "name": "BTC", "status": "Active" }, { "id": 1, "date_time": "21/05/2022", "customer": { "id": 127, "reg_date": "20/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "", "customer_type": "Individual", "email": "it@zed-pay.com", "mobile": "", "phone": "", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "", "address": "", "avatar": "/files/upload/user.png", "remark": "", "documents": [ { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220520-143027-127-0.png", "status": "Accepted", "comment": "Thank you" }, { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220520-143027-127-1.png", "status": "Rejected", "comment": "" } ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_id": "", "whatsapp": false, "app": true, "sms": false, "email": false }, "otp_enabled": true, "status": "Verified" }, "currency_id": 1, "currency_code": "EUR", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500001EUR", "address_balance": 0.0, "last_update": "2022-07-14T03:26:04.5478873-04:00" } ], "address_comment": "", "currency_flag": "/files/flags/eu.png", "balance": 880.0, "name": "My Saving Account", "status": "Closed" } ] }
post
/api/v1/account/rename
Rename account.
Send token as "Authorization" in your request header.
{ "id": 1, "name": "My Saving Account" }
{ "id": 78, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/account/deposit
Add fund to account. Send receipt (file) parameter if deposit was made by an offline transfer. This method is only available for fiat wallets.
Send token as "Authorization" in your request header.
{ "to_account_id": 1, "amount": 300.0, "type": "Deposit_Online", "receipt": "" }
{ "id": 79, "success": true, "message": "Transaction Completed.", "value": [ { "id": 22, "date_time": "23/05/2022 06:02", "transfer_id": 100019, "currency_code": "EUR", "debit": 0.0, "credit": 3.0, "balance": 1183.0, "transaction_type": "Commission", "system_remark": "Commission", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 21, "date_time": "23/05/2022 06:02", "transfer_id": 100019, "currency_code": "EUR", "debit": 300.0, "credit": 0.0, "balance": 1186.0, "transaction_type": "Deposit Online", "system_remark": "Deposit Account.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/account/withdraw
Withdraw from account balance. This method is only available for fiat wallets.
Send token as "Authorization" in your request header.
{ "from_account_id": 1, "amount": 400.0, "type": "Withdraw_Online", "otp_code": "123456" }
{ "id": 80, "success": true, "message": "Transaction Completed.", "value": [ { "id": 30, "date_time": "23/05/2022 06:09", "transfer_id": 100025, "currency_code": "EUR", "debit": 0.0, "credit": 4.0, "balance": 967.0, "transaction_type": "Commission", "system_remark": "Commission", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 29, "date_time": "23/05/2022 06:09", "transfer_id": 100025, "currency_code": "EUR", "debit": 0.0, "credit": 396.0, "balance": 971.0, "transaction_type": "Withdraw Online", "system_remark": "Withdraw Account.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/account/remit
Request an offline withdrawal. This method is only available for fiat wallets. Start bank_name with "(Local Bank) " if it is a Local Bank transfer.
Send token as "Authorization" in your request header.
{ "from_account_id": 16, "amount": 400.0, "type": "Withdraw_Requested", "otp_code": "123456", "bank_transfer": { "country": "France", "currency": "EUR", "payment_type": "Wire Transfer", "receiver_type": "Personal", "full_name": "John Doe", "mobile": "", "email": "receiver@example.com", "reg_number": "", "phone": "", "bank_name": "Alfa Bank", "branch_name": "", "BIC": "ALFAXXXX", "IBAN": "FR123456789012345", "message": "", "proforma": "/files/upload/proforma.jpg" } }
{ "id": 80, "success": true, "message": "Transaction Completed.", "value": [ { "id": 261, "date_time": "08/06/2022 06:13", "transfer_id": 100250, "currency_code": "EUR", "debit": 0.0, "credit": 400.0, "balance": 754.0, "transaction_type": "Withdraw Requested", "system_remark": "Offline Withdrawal requested by client.", "customer_remark": "", "status": "Pending", "details": { "bank_transfer": { "country": "France", "currency": "EUR", "payment_type": "Wire Transfer", "receiver_type": "Personal", "full_name": "John Doe", "mobile": "", "email": "receiver@example.com", "reg_number": "", "phone": "", "bank_name": "Alfa Bank", "branch_name": "", "BIC": "ALFAXXXX", "IBAN": "FR123456789012345", "message": "", "proforma": "/files/upload/proforma.jpg" }, "bank_transfer_log": [] }, "details_text": " Type: Bank Transfer, Country: France, Currency: EUR, Payment Type: Wire Transfer, Receiver Type: Personal, Registration Nunmber: , Full Name: John Doe, Mobile: , Email: receiver@example.com, Phone: , Bank Name: Alfa Bank, Branch: , BIC: ALFAXXXX, IBAN: FR123456789012345, Message: " } ] }
post
/api/v1/account/transfer
Transer between accounts.
Send token as "Authorization" in your request header.
{ "from_account_id": 1, "to_account_id": 3, "deposit_address": "", "to_blockchain": "none", "amount": 200.0, "otp_code": "123456", "check_only": false, "normal_sending": false }
{ "id": 81, "success": true, "message": "Transaction Completed.", "value": null }
get
/api/v1/account/transactions
Get a list of recent transactions of an account. account_id is mandatory.
Send token as "Authorization" in your request header.
?customer_id=99&account_id=1&id=2&transfer_id=100003
{ "id": 82, "success": true, "message": "", "value": [ { "id": 3, "date_time": "23/05/2022 04:30", "transfer_id": 100005, "currency_code": "EUR", "debit": 100.0, "credit": 0.0, "balance": 100.0, "transaction_type": "Deposit Requested", "system_remark": "Offline Deposit Requested by client.", "customer_remark": "", "status": "Pending", "details": { "bank_transfer": { "country": "France", "currency": "EUR", "payment_type": "Wire Transfer", "receiver_type": "Personal", "full_name": "John Doe", "mobile": "", "email": "receiver@example.com", "reg_number": "", "phone": "", "bank_name": "Alfa Bank", "branch_name": "", "BIC": "ALFAXXXX", "IBAN": "FR123456789012345", "message": "", "proforma": "/files/upload/proforma.jpg" }, "bank_transfer_log": [ { "date_time": "08/06/2022 06:17", "title": "Completed", "message": "Money has been sent to your account.", "file": "" } ] }, "details_text": " Type: Bank Transfer, Country: France, Currency: EUR, Payment Type: Wire Transfer, Receiver Type: Personal, Registration Nunmber: , Full Name: John Doe, Mobile: , Email: receiver@example.com, Phone: , Bank Name: Alfa Bank, Branch: , BIC: ALFAXXXX, IBAN: FR123456789012345, Message: <ul><li>08/06/2022 06:17: Completed<div class='gray'>Money has been sent to your account.</div></li></ul>" }, { "id": 2, "date_time": "23/05/2022 04:29", "transfer_id": 100004, "currency_code": "EUR", "debit": 100.0, "credit": 0.0, "balance": 200.0, "transaction_type": "Deposit Online", "system_remark": "Deposit Account.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 1, "date_time": "23/05/2022 04:29", "transfer_id": 100003, "currency_code": "EUR", "debit": 100.0, "credit": 0.0, "balance": 100.0, "transaction_type": "Deposit Online", "system_remark": "Deposit Account.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/account/confirm-transfer
Confirm a pending transfer by admin.
Send token as "Authorization" in your request header.
{ "id": 39, "currency_type": "Fiat" }
{ "id": 85, "success": true, "message": "Transaction Completed.", "value": [ { "id": 41, "date_time": "23/05/2022 06:16", "transfer_id": 100029, "currency_code": "EUR", "debit": 0.0, "credit": 10.0, "balance": 2353.0, "transaction_type": "Commission", "system_remark": "Commission", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 40, "date_time": "23/05/2022 06:16", "transfer_id": 100029, "currency_code": "EUR", "debit": 2000.0, "credit": 0.0, "balance": 2363.0, "transaction_type": "Deposit Offline", "system_remark": "Offline Deposit requested by client. Deposit Account on 23/05/2022 06:16.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/account/reject-transfer
Reject a pending transfer by admin.
Send token as "Authorization" in your request header.
{ "id": 39, "currency_type": "Fiat" }
{ "id": 86, "success": true, "message": "Transaction Rejected.", "value": { "id": 42, "date_time": "23/05/2022 06:32", "transfer_id": 100030, "currency_code": "EUR", "debit": 2000.0, "credit": 0.0, "balance": 2353.0, "transaction_type": "Deposit Requested", "system_remark": "Offline Deposit requested by client. Transaction declined on 23/05/2022 06:32.", "customer_remark": "", "status": "Rejected", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } }
get
/api/v1/account/find
Get public info of accounts connected to an email address or user id.
Send token as "Authorization" in your request header.
?email=it@zed-pay.com&uid=21500136
{ "id": 87, "success": true, "message": "", "value": [ { "id": 1, "date_time": null, "customer": { "id": 132, "reg_date": null, "first_name": null, "last_name": null, "gender": null, "birth_date": null, "customer_type": null, "email": null, "mobile": null, "phone": null, "country": null, "city": null, "address": null, "avatar": null, "remark": null, "documents": null, "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": null }, "currency_id": 1, "currency_code": "EUR", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500001EUR", "address_balance": 0, "last_update": "2022-07-14T03:17:42.0232614-04:00" } ], "address_comment": "", "balance": 0.0, "name": null, "status": "Active" }, { "id": 3, "date_time": null, "customer": { "id": 132, "reg_date": null, "first_name": null, "last_name": null, "gender": null, "birth_date": null, "customer_type": null, "email": null, "mobile": null, "phone": null, "country": null, "city": null, "address": null, "avatar": null, "remark": null, "documents": null, "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": null }, "currency_id": 3, "currency_code": "GBP", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500001GBP", "address_balance": 0, "last_update": "2022-07-14T03:17:42.0232614-04:00" } ], "address_comment": "", "balance": 0.0, "name": null, "status": "Active" }, { "id": 51, "date_time": null, "customer": { "id": 132, "reg_date": null, "first_name": null, "last_name": null, "gender": null, "birth_date": null, "customer_type": null, "email": null, "mobile": null, "phone": null, "country": null, "city": null, "address": null, "avatar": null, "remark": null, "documents": null, "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": null }, "currency_id": 20, "currency_type": "Crypto", "currency_code": "ETH", "address": [ { "blockchain": 1, "address_index": 1, "address": "0x4fd7b9bfb593d70383a37b97da95432da66d3d8a", "address_balance": 0.0, "last_update": "2022-07-14T03:17:42.0391877-04:00" } ], "address_comment": "ERC20", "currency_flag": "/files/crypto/ETH.png", "balance": 0.0, "name": null, "status": "Active" } ] }
post
/api/v1/account/update-bank-transfer-log
Submit a new update for a withdrawal or deposit request.
Send token as "Authorization" in your request header.
{ "id": 1, "details": { "bank_transfer_log": [ { "title": "Completed", "message": "We have sent money to your bank account.", "file": "" } ] } }
{ "id": 114, "success": true, "message": "Changes have been saved!", "value": null }
get
/api/v1/account/list-crypto-transactions
Get a list of recent transactions of a crypto wallet.
Send token as "Authorization" in your request header.
?account_id=1&blockchain=ethereum
{ "id": 116, "success": true, "message": "", "value": [ { "date_time": "13/06/2022 11:02", "transaction_id": "0x2b5ef1de63b3114dd50a06e170a35258610ebcdfbab786335e16468c38517e30", "blockchain": "ETHEREUM", "sender_address": "0xcbfb60f6a39e9e5e79f48555de777b9aab19c99a", "recipient_address": "0x4fd7b9bfb593d70383a37b97da95432da66d3d8a", "amount": "1", "fee": "0.0", "symbol": "USDT", "status": "Confirmed" }, { "date_time": "13/06/2022 11:02", "transaction_id": "0x75a7894115d0381d2d72b91cd789a91f6aa2a5a1372cadc6f4808855119a5933", "blockchain": "ETHEREUM", "sender_address": "0x4fd7b9bfb593d70383a37b97da95432da66d3d8a", "recipient_address": "0xc8f4a80310f2d84c2874a4adaed702c7dcef29d5", "amount": "0.2", "fee": "0.0", "symbol": "USDT", "status": "Confirmed" } ] }
get
/api/v1/account/list-crypto-pending-transfers
Get a list of pending transaction to be send to blockchain. id parameter is optional.
Send token as "Authorization" in your request header.
?id=1
{ "id": 117, "success": true, "message": "", "value": [ { "date_time_text": "14/07/2022 16:55", "account": { "id": 90, "date_time": "09/07/2022", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "01/01/1984", "customer_type": "Individual", "email": "it@zed-pay.com", "mobile": "15161234567", "phone": "15161234567", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "London", "address": "London", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [ { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220527-070124-132-0.png", "status": "Pending", "comment": "" }, { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220527-070124-132-1.png", "status": "Pending", "comment": "" } ], "api_key": { "active": true, "api_key": "0d6e00a19b21bb3e6887e16971b3c655", "secret_key": "409795e0cfe5b99d7bb4860de6ead60b" }, "notification": { "telegram": false, "telegram_chat_id": "5369855298", "whatsapp": false, "sms": false, "email": false }, "status": "Verified" }, "currency_id": 17, "currency_code": "USDT", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 0, "address": "0x4fd7b9bfb593d70383a37b97da95432da66d3d8a", "address_balance": 0.005, "last_update": "2022-07-14T03:17:42.0421851-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/USDT.png", "balance": 2027.97653261275, "name": "My USDT Wallet", "status": "Active" }, "id": 7, "date_time": "2022-07-14T16:55:57", "transfer_id": 101435, "customer_id": 132, "currency": { "id": 17, "name": "Tether", "code": "USDT", "color": "#26a17b", "currency_type": 2, "country_id": 236, "sell": 1.00235836, "buy": 1.00235836, "withdrawal_commission": 0, "swap_commission": 0, "details": [ { "blockchain": 6, "contract_address": "0xb404c51bbc10dcbe948077f18a4b8e553d160084", "digits": 6, "admin_index": 0, "admin_address": "0xc619d04b074b0516b73bcbba3ddbe12a50140207", "withdrawal_commission": 10.0, "swap_commission": 1.0 }, { "blockchain": 11, "contract_address": "TW61xaCWRfCPbQ2C2EoyKTa8teruShpSbK", "digits": 6, "admin_index": 0, "admin_address": "TBRaXe8VCgxpkzM92cWFUeG8ZJ5GQYa8Pn", "withdrawal_commission": 10.0, "swap_commission": 1.0 } ], "status": 1 }, "blockchain": 11, "from_index": 0, "from_address": "TBRaXe8VCgxpkzM92cWFUeG8ZJ5GQYa8Pn", "to_address": "0x7312d8a0b8751ed87b97436cec2877b3d483bb55f", "amount": 995.0, "tries": 0, "next_try": "2022-07-14T16:55:57", "details": { "transaction_id": "", "url": "" }, "status": 1 }, { "date_time_text": "14/07/2022 16:55", "account": { "id": 89, "date_time": "08/07/2022", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "01/01/1984", "customer_type": "Individual", "email": "it@zed-pay.com", "mobile": "15161234567", "phone": "15161234567", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "London", "address": "London", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [ { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220527-070124-132-0.png", "status": "Pending", "comment": "" }, { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220527-070124-132-1.png", "status": "Pending", "comment": "" } ], "api_key": { "active": true, "api_key": "0d6e00a19b21bb3e6887e16971b3c655", "secret_key": "409795e0cfe5b99d7bb4860de6ead60b" }, "notification": { "telegram": false, "telegram_chat_id": "5369855298", "whatsapp": false, "sms": false, "email": false }, "status": "Verified" }, "currency_id": 20, "currency_code": "ETH", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 1, "address": "0xc8f4a80310f2d84c2874a4adaed702c7dcef29d5", "address_balance": 0.946072568133207, "last_update": "2022-07-14T03:17:42.0411873-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/ETH.png", "balance": 9.0, "name": "My ETH Wallet", "status": "Active" }, "id": 6, "date_time": "2022-07-14T16:55:03", "transfer_id": 101433, "customer_id": 132, "currency": { "id": 20, "name": "Ethereum", "code": "ETH", "color": "#627eea", "currency_type": 2, "country_id": 9999, "sell": 1138.39270545, "buy": 1138.39270545, "withdrawal_commission": 0, "swap_commission": 0, "details": [ { "blockchain": 6, "contract_address": "", "digits": 18, "admin_index": 0, "admin_address": "0xc619d04b074b0516b73bcbba3ddbe12a50140207", "withdrawal_commission": 10.0, "swap_commission": 1.0 } ], "status": 1 }, "blockchain": 6, "from_index": 0, "from_address": "0xc619d04b074b0516b73bcbba3ddbe12a50140207", "to_address": "0xc619d04b074b0516b73bcbba3ddbe12a501402078", "amount": 2.9, "tries": 0, "next_try": "2022-07-14T16:55:03", "details": { "transaction_id": "", "url": "" }, "status": 1 } ] }
get
/api/v1/account/create-invoice
Create a Proforma Invoice.
Send token as "Authorization" in your request header.
?customer_id=1&amount=2000¤cy_code=EUR
{ "id": 130, "success": true, "message": "", "value": "/files/upload/100001.pdf" }
post
/api/v1/account/new-visa-card
Request a new Visa Card,
Send token as "Authorization" in your request header.
{ "customer_id": 2, "currency_id": 1, "plan": "Golden", "type": "Rechargeable", "name": "John Doe", "balance": 1000.0, "expire_in_year": 2 }
{ "id": 134, "success": true, "message": "Your request has been received. We'll contact you in a day or two!", "value": null }
post
/api/v1/account/new-virtual-card
Request a new virtual card.
Send token as "Authorization" in your request header.
{ "customer_id": 2, "currency_id": 1, "type": "Visa", "plan": "Golden", "Rechargeable": true, "name": "John Doe", "balance": 1000.0, "expire_in_year": 2 }
{ "id": 180, "success": true, "message": "Your request has been received. We'll contact you in a day or two!", "value": null }
get
/api/v1/account/list-cards
Get a list of virtual cards.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 182, "success": true, "message": "", "value": [ { "id": 7, "date_time": "19/11/2022", "currency_code": "AED", "type": "Visa", "card_plan": "Golden", "rechargeable": "Yes", "name": "John Doe", "balance": 1000.0, "expires_in": "2 years", "details": {}, "status": "Pending" }, { "id": 4, "date_time": "19/11/2022", "currency_code": "USD", "type": "Master", "card_plan": "Golden", "rechargeable": "Yes", "name": "John Doe", "balance": 1000.0, "expires_in": "2 years", "details": {}, "status": "Pending" }, { "id": 2, "date_time": "19/11/2022", "currency_code": "USD", "type": "Visa", "card_plan": "Golden", "rechargeable": "Yes", "name": "John Doe", "balance": 1000.0, "expires_in": "2 years", "details": {}, "status": "Pending" }, { "id": 1, "date_time": "19/11/2022", "currency_code": "EUR", "type": "Visa", "card_plan": "Golden", "rechargeable": "Yes", "name": "John Doe", "balance": 1000.0, "expires_in": "2 years", "details": {}, "status": "Pending" } ] }
get
/api/v1/account/transaction-invoice
Get a PDF version of a transaction.
Send token as "Authorization" in your request header.
?id=1
{ "id": 135, "success": true, "message": "", "value": "/files/upload/tranaction-1510.pdf" }
get
/api/v1/account/get-swap-elements
Get a list of eligible accounts for swap.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 137, "success": true, "message": "", "value": { "pay": [ { "id": 147, "currency_code": "ETH", "balance": 1.8645595778088, "swap_rate": 1458.7503457923 }, { "id": 87, "currency_code": "EUR", "balance": 500.0, "swap_rate": 0.98743989223652373 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 0.062011619999999996 }, { "id": 113, "currency_code": "USD", "balance": 202.380888427146, "swap_rate": 0.995 }, { "id": 137, "currency_code": "USDT", "balance": 562.4, "swap_rate": 0.974661868068 } ], "receive": [ { "id": 163, "currency_code": "AED", "balance": 0.0, "swap_rate": 0.273655547991831 }, { "id": 165, "currency_code": "BNB", "balance": 0.0, "swap_rate": 279.4908142233 }, { "id": 147, "currency_code": "ETH", "balance": 1.8645595778088, "swap_rate": 1488.29409423 }, { "id": 87, "currency_code": "EUR", "balance": 500.0, "swap_rate": 1.002375790205 }, { "id": 162, "currency_code": "GBP", "balance": 0.0, "swap_rate": 1.18051481017498 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 0.062638 }, { "id": 164, "currency_code": "TRY", "balance": 0.0, "swap_rate": 0.0552409856254958 }, { "id": 113, "currency_code": "USD", "balance": 202.380888427146, "swap_rate": 1.005 }, { "id": 137, "currency_code": "USDT", "balance": 562.4, "swap_rate": 1.0045484334 } ] } }
get
/api/v1/account/get-swap-pay
Get a list of eligible accounts for swap.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 207, "success": true, "message": "", "value": [ { "id": 147, "currency_code": "ETH", "balance": 1.8645595778088, "swap_rate": 1 }, { "id": 87, "currency_code": "EUR", "balance": 500.0, "swap_rate": 1 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 1 }, { "id": 113, "currency_code": "USD", "balance": 202.380888427146, "swap_rate": 1 }, { "id": 137, "currency_code": "USDT", "balance": 562.4, "swap_rate": 1 } ] }
get
/api/v1/account/get-swap-receive
Get a list of eligible accounts to swap.
Send token as "Authorization" in your request header.
?pay_account_id=1
{ "id": 208, "success": true, "message": "", "value": [ { "id": 163, "currency_code": "AED", "balance": 0.0, "swap_rate": 0.273655547991831 }, { "id": 165, "currency_code": "BNB", "balance": 0.0, "swap_rate": 279.4908142233 }, { "id": 147, "currency_code": "ETH", "balance": 1.8645595778088, "swap_rate": 1488.29409423 }, { "id": 87, "currency_code": "EUR", "balance": 500.0, "swap_rate": 1.002375790205 }, { "id": 162, "currency_code": "GBP", "balance": 0.0, "swap_rate": 1.18051481017498 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 0.062638 }, { "id": 164, "currency_code": "TRY", "balance": 0.0, "swap_rate": 0.0552409856254958 }, { "id": 113, "currency_code": "USD", "balance": 202.380888427146, "swap_rate": 1.005 }, { "id": 137, "currency_code": "USDT", "balance": 562.4, "swap_rate": 1.0045484334 } ] }
get
/api/v1/account/buy-crypto-elements
Get a list of eligible accounts to buy crypto.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 140, "success": true, "message": "", "value": { "pay": [ { "id": 15, "currency_code": "TRY", "balance": 0.0, "swap_rate": 0.054490338978999 }, { "id": 11, "currency_code": "USD", "balance": 0.0, "swap_rate": 0.995 }, { "id": 12, "currency_code": "EUR", "balance": 0.0, "swap_rate": 0.998104003640923 }, { "id": 13, "currency_code": "GBP", "balance": 0.0, "swap_rate": 1.15188190355674 } ], "receive": [ { "id": 165, "currency_code": "BNB", "balance": 0.216919920129455, "swap_rate": 278.01389862600752 }, { "id": 147, "currency_code": "ETH", "balance": 1.7645595778088, "swap_rate": 1592.4949099188523 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 0.060679079999999996 }, { "id": 137, "currency_code": "USDT", "balance": 358.4, "swap_rate": 0.983422512114 } ] } }
get
/api/v1/account/get-statement
Get a summary of account input, output and balance of a specific account.
Send token as "Authorization" in your request header.
?id=1&from=2024-01-15&to=2024-04-15
{ "id": 249, "success": true, "message": "", "value": "https://zed-pay.com/files/upload/eccc5baa-a645-493e-b131-aea417d36fd77599e59548e143119a96b9604b4f3b52.pdf" }
get
/api/v1/account/get-agent-commissions
Get a report of commission earned by an agent.
Send token as "Authorization" in your request header.
?from=2023-12-15&to=2024-02-15
{ "id": 251, "success": true, "message": "", "value": [ { "title": "Wallet", "currency": "USDZ", "total": "19.40", "details": [ { "id": 3132, "date_time": "2024-05-05T08:18:35", "transfer_id": 103730, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 0.6426, "credit": 0.0, "balance": 282.555043263678, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL UNLOAD", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 3130, "date_time": "2024-05-05T08:18:05", "transfer_id": 103729, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 0.8294, "credit": 0.0, "balance": 281.912443263678, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL LOAD", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 3128, "date_time": "2024-05-05T07:54:49", "transfer_id": 103727, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 1.65, "credit": 0.0, "balance": 281.083043263678, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL ISSUE", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 2459, "date_time": "2024-01-15T04:14:39", "transfer_id": 103602, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 7.5, "credit": 0.0, "balance": 83.053043263678, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL ISSUE", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 2453, "date_time": "2024-01-12T15:04:14", "transfer_id": 103592, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 1.275, "credit": 0.0, "balance": 1.53316094550001, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL LOAD", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 2451, "date_time": "2024-01-12T15:03:44", "transfer_id": 103591, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 7.5, "credit": 0.0, "balance": 104.8081609455, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL ISSUE", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } } ] }, { "title": "Wallet", "currency": "EUR", "total": "1.00", "details": [ { "id": 3115, "date_time": "2024-05-04T14:02:46", "transfer_id": 103718, "customer_id": 132, "account_id": 87, "currency_code": "EUR", "debit": 0.6, "credit": 0.0, "balance": 5618.02348271987, "transaction_type": 205, "system_remark": "Agent Commission for SWAP COMMISSION", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 3111, "date_time": "2024-05-04T14:01:30", "transfer_id": 103716, "customer_id": 132, "account_id": 87, "currency_code": "EUR", "debit": 0.4, "credit": 0.0, "balance": 5617.42348271987, "transaction_type": 205, "system_remark": "Agent Commission for SWAP COMMISSION", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } } ] } ] }
get
/api/v1/account/get-agent-pending-transfers
Get a list of pending transfers to confirm or reject by an agent.
Send token as "Authorization" in your request header.
{ "id": 257, "success": true, "message": "", "value": { "Fiat": [ { "account": { "id": 286, "date_time": "04/05/2024", "customer": { "id": 226, "reg_date": "04/05/2024", "first_name": "John", "last_name": "Doe", "gender": "I prefer not to say", "birth_date": "15/12/2000", "customer_type": "Organization", "email": "it@zed-pay.com", "mobile": "9012365985471", "phone": "+9012365985488", "country": { "id": 103, "name": "India", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, "city": "Istanbul", "address": "Some address", "avatar": "/files/upload/r20240504-135412-226-4eb68a8c622544508555e3f9b28861db-0.png", "remark": "", "documents": [ ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_chat_id": "", "whatsapp": false, "app": true, "sms": false, "email": true }, "otp_enabled": true, "status": "Verified", "agent_id": 132 }, "currency_id": 12, "currency_code": "EUR", "currency_price": "1.094455", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500226EUR", "address_balance": 0.0, "last_update": "2024-05-04T13:55:32.3593883-04:00" } ], "address_comment": "", "currency_flag": "/files/flags/eu.png", "balance": 4990.0, "name": "My EUR Wallet", "status": "Active" }, "transaction": { "id": 3133, "date_time": "05/05/2024 11:09", "transfer_id": 103734, "currency_code": "EUR", "debit": 1000.0, "credit": 0.0, "balance": 4800.0, "transaction_type": "Deposit Requested", "system_remark": "Offline Deposit requested by client. <a href='/files/upload/20240505-110909-226-f461f90ae9e747a89b15919d73be858f-0.png' target='_blank'>Payment Receipt</a>.", "customer_remark": "", "status": "Pending", "details": { "bank_transfer": null, "bank_transfer_log": [], "agent_confirm": 1 }, "details_text": "" } }, { "account": { "id": 286, "date_time": "04/05/2024", "customer": { "id": 226, "reg_date": "04/05/2024", "first_name": "John", "last_name": "Doe", "gender": "I prefer not to say", "birth_date": "15/12/2000", "customer_type": "Organization", "email": "it@zed-pay.com", "mobile": "9012365985471", "phone": "+9012365985488", "country": { "id": 103, "name": "India", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, "city": "Istanbul", "address": "Some address", "avatar": "/files/upload/r20240504-135412-226-4eb68a8c622544508555e3f9b28861db-0.png", "remark": "", "documents": [ ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_chat_id": "", "whatsapp": false, "app": true, "sms": false, "email": true }, "otp_enabled": true, "status": "Verified", "agent_id": 132 }, "currency_id": 12, "currency_code": "EUR", "currency_price": "1.094455", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500226EUR", "address_balance": 0.0, "last_update": "2024-05-04T13:55:32.3593883-04:00" } ], "address_comment": "", "currency_flag": "/files/flags/eu.png", "balance": 4990.0, "name": "My EUR Wallet", "status": "Active" }, "transaction": { "id": 3147, "date_time": "13/05/2024 06:03", "transfer_id": 103763, "currency_code": "EUR", "debit": 0.0, "credit": 132.675, "balance": 4857.325, "transaction_type": "Withdraw Requested", "system_remark": "Offline Withdrawal requested by client.", "customer_remark": "", "status": "Pending", "details": { "bank_transfer": { "country": "Albania", "currency": "EUR", "payment_type": "Cash", "receiver_type": "Personal", "full_name": "Ivan Petrov", "mobile": "+906555444444", "email": "ivan@n.com", "reg_number": "", "phone": "", "bank_name": "Bank", "branch_name": "56456456", "BIC": "4654XX56", "IBAN": "AL446456345345345345435", "message": "", "proforma": "", "MirCard": null }, "bank_transfer_log": [], "agent_confirm": 2 }, "details_text": "" } } ], "Crypto": [ { "account": { "id": 288, "date_time": "04/05/2024", "customer": { "id": 226, "reg_date": "04/05/2024", "first_name": "John", "last_name": "Doe", "gender": "I prefer not to say", "birth_date": "15/12/2000", "customer_type": "Organization", "email": "it@zed-pay.com", "mobile": "9012365985471", "phone": "+9012365985488", "country": { "id": 103, "name": "India", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, "city": "Istanbul", "address": "Some address", "avatar": "/files/upload/r20240504-135412-226-4eb68a8c622544508555e3f9b28861db-0.png", "remark": "", "documents": [ ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_chat_id": "", "whatsapp": false, "app": true, "sms": false, "email": true }, "otp_enabled": true, "status": "Verified", "agent_id": 132 }, "currency_id": 20, "currency_code": "ETH", "currency_price": "2,995.29195", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 1000000226, "address": "0x3db5789fc8f81f3444cec9cac136840d9384f5cf", "address_balance": 0.0, "last_update": "2024-05-04T13:52:05.7549834-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/ETH.png", "balance": 0.66736302642156, "name": "My ETH Wallet", "status": "Active" }, "transaction": { "date_time_text": "13/05/2024 06:17", "account": { "id": 288, "date_time": "04/05/2024", "customer": { "id": 226, "reg_date": "04/05/2024", "first_name": "John", "last_name": "Doe", "gender": "I prefer not to say", "birth_date": "15/12/2000", "customer_type": "Organization", "email": "it@zed-pay.com", "mobile": "9012365985471", "phone": "+9012365985488", "country": { "id": 103, "name": "India", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, "city": "Istanbul", "address": "Some address", "avatar": "/files/upload/r20240504-135412-226-4eb68a8c622544508555e3f9b28861db-0.png", "remark": "", "documents": [ ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_chat_id": "", "whatsapp": false, "app": true, "sms": false, "email": true }, "otp_enabled": true, "status": "Verified", "agent_id": 132 }, "currency_id": 20, "currency_code": "ETH", "currency_price": "2,995.29195", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 1000000226, "address": "0x3db5789fc8f81f3444cec9cac136840d9384f5cf", "address_balance": 0.0, "last_update": "2024-05-04T13:52:05.7549834-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/ETH.png", "balance": 0.66736302642156, "name": "My ETH Wallet", "status": "Active" }, "id": 107, "date_time": "2024-05-13T06:17:43", "transfer_id": 103769, "customer_id": 226, "currency": { "id": 20, "name": "Ethereum", "code": "ETH", "color": "#627eea", "currency_type": 2, "country_id": 9999, "sell": 2995.29195, "buy": 2965.48805, "swift_commission": 0.0, "withdrawal_commission": 0.0, "swap_commission": 0.0, "referral_bonus": 0.1, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [ { "blockchain": 6, "contract_address": "", "digits": 18, "admin_index": 0, "admin_address": "0xcdb90f74c3e2cc467dc399dc5fe905a56f3743a9", "withdrawal_commission": 0.0, "swap_commission": 2.0, "max_auto_send": 0.1 } ], "status": 1 }, "blockchain": 6, "from_index": 0, "from_address": "0xcdb90f74c3e2cc467dc399dc5fe905a56f3743a9", "to_address": "0xcdb90f74c3e2cc467dc399dc5fe905a56f3743a5", "amount": 0.4, "tries": 0, "next_try": "2024-05-13T06:17:43", "details": { "transaction_id": "", "url": "", "system_remark": null, "agent_confirm": 2 }, "status": 1 } } ] } }
post
/api/v1/account/update-pending-transfer
Update agent confirmation of a pending transfer.
Send token as "Authorization" in your request header.
{ "type": "Cryptp", "id": 100, "confirm": true }
{ "id": 258, "success": true, "message": "Status Updated.", "value": null }
+ Ad
get
/api/v1/ad/get-all
Get all Ad
get
/api/v1/ad/get-by-id
Get by id Ad
post
/api/v1/ad/update-ad
Update Ad
Send token as "Authorization" in your request header.
post
/api/v1/ad/add-ad
Add Ad
Send token as "Authorization" in your request header.
get
/api/v1/ad/delete-ad
Delete Ad
Send token as "Authorization" in your request header.
+ Address-List
post
/api/v1/address-list/add
Add an address to address list.
Send token as "Authorization" in your request header.
{ "user_type": "Client", "user_id": 132, "name": "Mike USDT Wallet", "address": "0xfdg54f958d2ee666a2206206994597c13d831652hg", "blockchain": "tron" }
{ "id": 125, "success": true, "message": "Item added successfully.", "value": null }
post
/api/v1/address-list/delete
Delete an address from address list.
Send token as "Authorization" in your request header.
{ "id": 1 }
{ "id": 126, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/address-list/get-address-list
Get a list of customer's address list.
Send token as "Authorization" in your request header.
?user_type=Client&user_id=132
{ "id": 127, "success": true, "message": "", "value": [ { "id": 5, "user_type": 2, "user_id": 132, "name": "Alex USDT Wallet", "address": "0xfdg54f958d2ee666a2206206994597c13d831652h4", "blockchain": 6 }, { "id": 4, "user_type": 2, "user_id": 132, "name": "Mike ETH Wallet", "address": "0xfdg54f958d2ee666a2206206994597c13d831652h3", "blockchain": 6 }, { "id": 3, "user_type": 2, "user_id": 132, "name": "Mike USDT Wallet", "address": "0xfdg54f958d2ee666a2206206994597c13d831652h2", "blockchain": 10 } ] }
+ APCard
post
/api/v1/apcard/issue-virtual-card
Issue a new virtual card.
Send token as "Authorization" in your request header.
{ "customer_id": 132, "surname": "Doe", "amount": 100, "name": "John", "address_line1": "No 25, Wall Street", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "441234567890", "email": "it@zedpay.com", "network": "Visa", "referral_code": "" }
{ "id": 223, "success": true, "message": "Card has been issued successfully. Card details will be available in 5 minutes.", "value": { "id": 6, "date_time": "27/12/2023 07:16", "customer_id": 132, "account_id": 230, "email": "someone@example.com", "first_name": "Alex", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 25.0, "balance": 25.0, "currency": "USD", "cardId": "", "cvc": "", "card_number": "", "expYear": "", "expMonth": "", "status": "Pending", "transfer_id": 103565, "network": "Mastercard" } }
post
/api/v1/apcard/load-virtual-card
Add funds to virtual card by USDZ wallet.
Send token as "Authorization" in your request header.
{ "id": 4, "amount": 100, "otp_code": 123456 }
{ "id": 224, "success": true, "message": "Operation was successful. Your new balance: 30.00 USD.", "value": { "id": 5, "date_time": "27/12/2023 07:10", "customer_id": 132, "account_id": 230, "email": "harry@zedpay.com", "first_name": "John", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 5.0, "balance": 30.0, "currency": "USD", "cardId": "c_4f0628a668e14379a1b5", "cvc": "***", "card_number": "5534372199781000", "expYear": "2025", "expMonth": "12", "status": "Active", "transfer_id": 103562, "network": "Mastercard" } }
post
/api/v1/apcard/unload-virtual-card
Withdraw card balance.
Send token as "Authorization" in your request header.
{ "id": 4, "amount": 100, "otp_code": 123456 }
{ "id": 225, "success": true, "message": "Operation was successful. Your new balance: 30.00 USD.", "value": { "id": 5, "date_time": "27/12/2023 07:10", "customer_id": 132, "account_id": 230, "email": "harry@zedpay.com", "first_name": "John", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 5.0, "balance": 30.0, "currency": "USD", "cardId": "c_4f0628a668e14379a1b5", "cvc": "***", "card_number": "5534372199781000", "expYear": "2025", "expMonth": "12", "status": "Active", "transfer_id": 103562, "network": "Mastercard" } }
get
/api/v1/apcard/get-types
Get a list of available virtual cards.
Send token as "Authorization" in your request header.
{ "id": 226, "success": true, "message": "", "value": [ { "vid": "vab_0d943d725792", "cardBin": "553437", "desp": null }, { "vid": "vab_f2c03ca78e22", "cardBin": "553437", "desp": null }, { "vid": "vab_f4ca16ee66f7", "cardBin": "441112", "desp": null } ] }
get
/api/v1/apcard/list
List cards of specific user.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 227, "success": true, "message": "", "value": [ { "id": 3, "date_time": "26/12/2023 09:19", "customer_id": 132, "account_id": 230, "email": "someone@example.com", "first_name": "Alex", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 100.0, "balance": 100.0, "currency": "USD", "cardId": "", "cvc": "", "card_number": "", "expYear": "", "expMonth": "", "status": "Pending", "transfer_id": 103546, "network": "Mastercard" }, { "id": 2, "date_time": "26/12/2023 06:09", "customer_id": 132, "account_id": 230, "email": "alex@zedpay.com", "first_name": "John", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 5.0, "balance": 1.0, "currency": "USD", "cardId": "c_4f0628a668e14379a1b5", "cvc": "***", "card_number": "5532222199781755", "expYear": "2025", "expMonth": "12", "status": "Active", "transfer_id": 103533, "network": "Mastercard" } ] }
get
/api/v1/apcard/get-balance
Get updated balance of a virtual card
Send token as "Authorization" in your request header.
?id=2
{ "id": 228, "success": true, "message": "", "value": 1.0 }
get
/api/v1/apcard/get-history
Get Virtual Card Transactions
Send token as "Authorization" in your request header.
?id=2
{ "id": 229, "success": true, "message": "", "value": [ { "transactionId": "t_3d15c00080f74cd3a58434625068d474", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Foreign Decline Fee (ALIPAY 0.0 CNY)", "reason": null, "amount": "-0.50", "currency": "USD", "status": "FEE", "tradeAt": "2024-17-10 08:17" }, { "transactionId": "t_47c5023f667847b29d5968c1796b1d99", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Transaction Fee:Declined Transaction (ALIPAY 0.0 CNY)", "reason": null, "amount": "-0.15", "currency": "USD", "status": "FEE", "tradeAt": "2024-17-10 08:17" }, { "transactionId": "t_187531b13ea94baea575ca5da8124dc6", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "ALIPAY 0.00 CNY", "reason": "Balance not enough", "amount": "0.00", "currency": "USD", "status": "DECLINED", "tradeAt": "2024-16-10 08:16" }, { "transactionId": "t_fea79cdde2e94d6a90978b13e442eab1", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Foreign Decline Fee (ALIPAY 0.0 CNY)", "reason": null, "amount": "-0.50", "currency": "USD", "status": "FEE", "tradeAt": "2024-15-10 08:15" }, { "transactionId": "t_5d0797ce3e194ac8aeddb03d31bdda6a", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Transaction Fee:Declined Transaction (ALIPAY 0.0 CNY)", "reason": null, "amount": "-0.15", "currency": "USD", "status": "FEE", "tradeAt": "2024-15-10 08:15" }, { "transactionId": "t_f94ef63b050e47bb953d1dc11a9542a1", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "ALIPAY 0.00 CNY", "reason": "Balance not enough", "amount": "0.00", "currency": "USD", "status": "DECLINED", "tradeAt": "2024-14-10 08:14" }, { "transactionId": "t_f7440d5729b54ab696cd60e771e5cc8a", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "S/LOGO YAZILIM NOKTA B 10.00 TRY", "reason": null, "amount": "-0.34", "currency": "USD", "status": "COMPLETE", "tradeAt": "2024-01-06 07:01" }, { "transactionId": "t_cb79ad510a83432e8803cae1e50c608a", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "CANVA* I04010-30140571 1349.90 TRY", "reason": null, "amount": "-45.65", "currency": "USD", "status": "COMPLETE", "tradeAt": "2024-46-06 01:46" }, { "transactionId": "t_754f5125eaa3407a9aa506e460f13ddc", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Canva Pty Limited 9.00 TRY", "reason": null, "amount": "-0.30", "currency": "USD", "status": "PENDING", "tradeAt": "2024-52-05 11:52" }, { "transactionId": "t_a43abeb2cd6e46e09c5dd2d866f8136f", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Foreign Transaction Fee:Foreign Currency Transaction (Canva Pty Limited 9.0 TRY)", "reason": null, "amount": "-0.50", "currency": "USD", "status": "FEE", "tradeAt": "2024-52-05 11:52" } ] }
post
/api/v1/apcard/card-to-card
Send money from a card to another.
Send token as "Authorization" in your request header.
{ "from_id": 35, "to_card_number": "1234567890123456", "amount": 10.0, "otp_code": 123456 }
{ "id": 230, "success": true, "message": "Transaction has been completed successfully.", "value": { "id": 7, "date_time": "27/12/2023", "customer_id": 132, "account_id": 230, "email": "david@msn.com", "first_name": "John", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 50.0, "balance": 30.0, "currency": "USD", "cardId": "c_4f0628a668e14379a1b5", "cvc": "***", "card_number": "5534372199781123", "expYear": "2025", "expMonth": "12", "status": "Active", "transfer_id": 103568, "network": "Mastercard" } }
get
/api/v1/apcard/get-cvv
Get card's CVV2.
Send token as "Authorization" in your request header.
?id=1
{ "id": 231, "success": true, "message": "", "value": "013" }
+ Blog
get
/api/v1/blog/list
Get a list of recent blogs. Use id filter to get a single specific blog.
?items=50&id=2
{ "id": 16, "success": true, "message": "", "value": [ { "id": 15, "date_time": "02/04/2022", "title": "How to convert credit card outstanding into EMIs?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-4.png", "author": "Post By Hans Murazik", "category": "Credit", "url": "/blog/15", "status": "Enabled" }, { "id": 14, "date_time": "11/04/2022", "title": "Personal Loans Are Here To Finance Your Dreams.", "summary": "The secured personal loans are offered based on a collateral security such as car, house...", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-3.png", "author": "Post By Hans Murazik", "category": "Account", "url": "/blog/14", "status": "Enabled" }, { "id": 13, "date_time": "19/04/2022", "title": "How Do Unsecured Homeowner Loans Work?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-1.png", "author": "Post By Hans Murazik", "category": "Card", "url": "/blog/13", "status": "Enabled" } ] }
post
/api/v1/blog/add-blog
Add a new blog.
Send token as "Authorization" in your request header.
{ "title": "How to convert credit card outstanding into EMIs?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "/files/upload/blog.png", "author": "Jogn Doe", "category": "Loan" }
{ "id": 23, "success": true, "message": "Item added successfully.", "value": null }
post
/api/v1/blog/edit-blog
Edit blog content.
Send token as "Authorization" in your request header.
{ "id" : 16, "title": "How to convert credit card outstanding into EMIs?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "/files/upload/blog.png", "author": "Jogn Doe", "category": "Loan", "status": "Disabled" }
{ "id": 23, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/blog/delete-blog
Delete a blog.
Send token as "Authorization" in your request header.
{ "id": 2 }
{ "id": 24, "success": true, "message": "Selected item has been deleted.", "value": null }
+ Card
get
/api/v1/card/list-countries
Get a list of allowed countries.
Send token as "Authorization" in your request header.
{ "id": 185, "success": true, "message": "", "value": [ { "name": "Afghanistan", "alpha_2": "AF", "alpha_3": "AFG", "country_code": "004", "iso_3166_2": "ISO 3166-2:AF", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Åland Islands", "alpha_2": "AX", "alpha_3": "ALA", "country_code": "248", "iso_3166_2": "ISO 3166-2:AX", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Albania", "alpha_2": "AL", "alpha_3": "ALB", "country_code": "008", "iso_3166_2": "ISO 3166-2:AL", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Algeria", "alpha_2": "DZ", "alpha_3": "DZA", "country_code": "012", "iso_3166_2": "ISO 3166-2:DZ", "region": "Africa", "sub_region": "Northern Africa", "intermediate_region": "", "region_code": "002", "sub_region_code": "015", "intermediate_region_code": "" }, { "name": "American Samoa", "alpha_2": "AS", "alpha_3": "ASM", "country_code": "016", "iso_3166_2": "ISO 3166-2:AS", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Andorra", "alpha_2": "AD", "alpha_3": "AND", "country_code": "020", "iso_3166_2": "ISO 3166-2:AD", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Angola", "alpha_2": "AO", "alpha_3": "AGO", "country_code": "024", "iso_3166_2": "ISO 3166-2:AO", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Anguilla", "alpha_2": "AI", "alpha_3": "AIA", "country_code": "660", "iso_3166_2": "ISO 3166-2:AI", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Antarctica", "alpha_2": "AQ", "alpha_3": "ATA", "country_code": "010", "iso_3166_2": "ISO 3166-2:AQ", "region": "", "sub_region": "", "intermediate_region": "", "region_code": "", "sub_region_code": "", "intermediate_region_code": "" }, { "name": "Antigua and Barbuda", "alpha_2": "AG", "alpha_3": "ATG", "country_code": "028", "iso_3166_2": "ISO 3166-2:AG", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Argentina", "alpha_2": "AR", "alpha_3": "ARG", "country_code": "032", "iso_3166_2": "ISO 3166-2:AR", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Armenia", "alpha_2": "AM", "alpha_3": "ARM", "country_code": "051", "iso_3166_2": "ISO 3166-2:AM", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_c