Get JWT with valid signature
Provide a signature and get back a valid JWT that allows order actions
Request
Add parameter in header x-api-key
Example:x-api-key: ********************
or
Body Params application/jsonRequired
{
"signer": "string",
"signature": "string",
"message": "string"
}
Request Code Samples
curl --location --request POST 'https://api-testnet.predict.fun/v1/auth' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"signer": "string",
"signature": "string",
"message": "string"
}'
Responses
{
"success": true,
"data": {
"token": "string"
}
}
Modified at 2025-12-11 01:33:41