입찰 정보 확인 (입찰가능여부)
GET
https://{market-domain}/v1.0/product/bid
Query Parameters
Name
Type
Description
product_id*
int64
상품ID
Headers
Name
Type
Description
Authorization*
String
Bearer eyJhbGciOiJIUzI1NiIsI......
```json
{
"return": 0,
"message": "success",
"value": {
"bid_deposit_status": 3,
"bid_deposit_coin_id": 1,
"bid_deposit_quantity": 0.002,
"wallet_address": "0x852ff28a4c79Fb213c30513C82bA8913F28d7F60",
"my_coin_id": 1,
"my_coin_quantity": 524.9876
}
}
```
curl --location --request GET 'https://{dashboard-domain}/v1.0/product/bid?product_id=7' --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXV.....'
Last updated