Get JWT with valid signature
Provide a signature and get back a valid JWT that allows order actions
Request
Body Params  application/json
{
    "signer": "string",
    "signature": "string",
    "message": "string"
}
Request Code Samples
curl --location --request POST 'https://api-sepolia.predict.fun/auth' \
--header 'Content-Type: application/json' \
--data-raw '{
    "signer": "string",
    "signature": "string",
    "message": "string"
}'
Responses
{
    "success": true,
    "data": {
        "token": "string"
    }
}
Modified at 2024-12-11 12:14:21