Skip to main content
POST
/
quote
/
websocket
/
auth
WebSocket Authentication
curl --request POST \
  --url http://api.obsidiam.com/quote/websocket/auth \
  --header 'Content-Type: application/json' \
  --data '
{
  "secretKey": "<string>",
  "token": "<string>"
}
'
{
  "success": true,
  "message": "Authenticated successfully"
}

Body

application/json
secretKey
string
token
string

Response

Authentication successful. You will now receive quotation events.

success
boolean
Example:

true

message
string
Example:

"Authenticated successfully"