Skip to main content
POST
/
request-token
Request authentication token with signature
curl --request POST \
  --url https://launch-auth-v1.raydium.io/request-token \
  --header 'Content-Type: application/json' \
  --data '
{
  "time": 1704067200,
  "signature": "3veiKZ6IHo7jrz9XdwLd8KvvP2pinCtjJXWe6MGNDUjT...",
  "wallet": "4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4"
}
'
{
  "id": "<string>",
  "success": true,
  "data": {
    "token": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.raydium.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
time
integer
required

Current Unix timestamp in seconds when message was signed

Example:

1704067200

signature
string
required

Ed25519 signature of the message (base58 encoded)

Example:

"3veiKZ6IHo7jrz9XdwLd8KvvP2pinCtjJXWe6MGNDUjT..."

wallet
string
required

Solana wallet public key

Example:

"4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4"

Response

Token issued successfully

id
string
success
boolean
Example:

true

data
object