Saltar al contenido principal
POST
/
request-token
Solicitar token de autenticación con firma
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.

Cuerpo

application/json
time
integer
requerido

Marca de tiempo Unix actual en segundos cuando se firmó el mensaje

Ejemplo:

1704067200

signature
string
requerido

Firma Ed25519 del mensaje (codificada en base58)

Ejemplo:

"3veiKZ6IHo7jrz9XdwLd8KvvP2pinCtjJXWe6MGNDUjT..."

wallet
string
requerido

Clave pública de la cartera Solana

Ejemplo:

"4k3Dyjzvzp8eMZWUXbBCjEvwSvsrFjJqkDsyU5F5oV4"

Respuesta

Token emitido correctamente

id
string
success
boolean
Ejemplo:

true

data
object