API Documentation
- API
- Signature Generation
- Authentication & Security
- Account Management
- Trading Operations
- Market Information
- Vault Operations
Authentication & Security
Authentication
Authenticates user
POST
/
api
/
v1
/
auth
Copy
curl --request POST \
--url https://apiserver.beratrade.io/api/v1/auth \
--header 'Content-Type: application/json' \
--data '{
"signingKey": "<string>",
"signingSignature": "<string>",
"ethAddress": "<string>",
"ethSignature": "<string>",
"expiryTs": 123,
"nonce": 123,
"chainId": 123
}'
Copy
[
{
"body": {
"bliq_key": "<string>",
"bliq_secret": "<string>",
"bliq_secret_hash": "<string>"
},
"message": "<string>",
"status": 123
}
]
Body
application/json
The body is of type object
.
Response
200
application/json
Auth Response
The response is of type object[]
.
Copy
curl --request POST \
--url https://apiserver.beratrade.io/api/v1/auth \
--header 'Content-Type: application/json' \
--data '{
"signingKey": "<string>",
"signingSignature": "<string>",
"ethAddress": "<string>",
"ethSignature": "<string>",
"expiryTs": 123,
"nonce": 123,
"chainId": 123
}'
Copy
[
{
"body": {
"bliq_key": "<string>",
"bliq_secret": "<string>",
"bliq_secret_hash": "<string>"
},
"message": "<string>",
"status": 123
}
]
Assistant
Responses are generated using AI and may contain mistakes.