Skip to main content
POST
/
auth
cURL
curl --request POST \
  --url https://api.odin.fun/v1/auth \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "timestamp": "<string>",
  "signature": "<string>",
  "publickey": "<string>",
  "delegation": "<string>",
  "referrer": "<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
timestamp
string
required
signature
string
required
publickey
string
delegation
string
referrer
string

Response

default - application/json
token
string
required