Skip to main content
POST
/
request-token-ledger
Request token using Ledger transaction
curl --request POST \
  --url https://launch-auth-v1.raydium.io/request-token-ledger \
  --header 'Content-Type: application/json' \
  --data '
{
  "time": 1704067200,
  "transaction": "<string>",
  "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

Unix timestamp in seconds

Example:

1704067200

transaction
string
required

Solana transaction containing signed message (base64 encoded)

wallet
string
required

Solana wallet public key

Example:

"4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4"

Response

200 - application/json

Token issued successfully

id
string
success
boolean
Example:

true

data
object