Skip to main content
POST
/
auth
Authenticate account
curl --request POST \
  --url https://api.gateway.tech/auth \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>",
  "signature": "<string>",
  "wallet_address": "<string>"
}
'
{
  "token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

model.AuthRequest

message
string
required
signature
string
required
wallet_address
string
required

Response

200 - application/json

OK

token
string
required