ตัวอย่างการเรียกใช้งาน (Request Example)
curl -X GET https://baseUrl/api/v1/client/get_balance \
-H "Authorization: Bearer YOUR_SECRET_TOKEN" \
-H "x-api-key: YOUR_API_KEY" \
-H "x-signature: YOUR_BASE64_ENCODED_SIGNATURE" \
-H "Content-Type: application/json" \
การตอบกลับจาก API (Response Example)
{
"current_deposit_balance": 0,
"current_withdraw_balance": 0
}
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
const axios = require('axios')
try {
const { data } = await axios.get(
`${baseUrl}/api/v1/client/get_balance`,
{
headers: { // headers ที่ใช้ในการส่งคำขอ HTTP
Authorization: 'Bearer YOUR_ACCESS_TOKEN', // การให้สิทธิ์ด้วย Bearer token
'x-api-key': 'YOUR_API_KEY', // กุญแจ API
'x-signature': 'YOUR_BASE64_ENCODED_SIGNATURE', // ลายเซ็นที่เข้ารหัส
},
},
)
}
<?php
$baseUrl = 'YOUR_BASE_URL'; // กำหนด base URL ของ API
$accessToken = 'YOUR_ACCESS_TOKEN'; // กำหนด Access Token
$apiKey = 'YOUR_API_KEY'; // กำหนด API Key
$signature = 'YOUR_BASE64_ENCODED_SIGNATURE'; // กำหนด Signature
$url = $baseUrl . '/api/v1/client/get_balance';
// กำหนด headers ที่ต้องใช้ในการส่งคำขอ HTTP
$headers = [
'Authorization: Bearer ' . $accessToken,
'x-api-key: ' . $apiKey,
'x-signature: ' . $signature,
];
$ch = curl_init(); // สร้าง cURL handle
curl_setopt($ch, CURLOPT_URL, $url); // ตั้งค่า URL ของคำขอ
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // ตั้งค่าให้ cURL ส่งผลลัพธ์กลับเป็น string
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); // ตั้งค่า headers
$response = curl_exec($ch); // ส่งคำขอ HTTP
if (curl_errno($ch)) {
// แสดงข้อผิดพลาดถ้ามี
echo 'Error:' . curl_error($ch);
} else {
$data = json_decode($response, true); // แปลงผลลัพธ์ JSON เป็น array
// ดำเนินการกับข้อมูลที่ได้จาก API ตามต้องการ
print_r($data); // ตัวอย่างการแสดงข้อมูล
}
curl_close($ch); // ปิด cURL handle
?>