For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authenticate user with signed data

post

Authenticate a user with signed data. Verifies the wallet signature and issues session tokens (access and refresh).

Path parameters
apiKeystringRequired

API key generated at https://studio.aurora.dev

Body
signedDataany ofRequired

Signed message payload. Supports multiple signing standards (for example nep413 and erc191), discriminated by the standard field.

or
Responses
200

Signature verification succeeded; tokens issued

application/json

Signature verification succeeded; tokens issued

accessTokenstringRequired

JWT access token for authenticated API calls.

Example: <jwt>
refreshTokenstringRequired

JWT refresh token used to obtain new access tokens.

Example: <jwt>
expiresInnumberRequired

Access token lifetime in seconds.

Example: 900
refreshExpiresInnumberRequired

Refresh token lifetime in seconds.

Example: 2592000
post/api/auth/authenticate/{apiKey}

Last updated