How to authenticate your API requests
Authentication with API Key and JWT Token
1.
2.
Obtaining a JWT Token (for EOAs)
1.
Send a
GET
request to /auth/message
to retrieve a message for signing.2.
Use the wallet you want to authenticate with to sign the message retrieved in step 1.
3.
Send a
POST
request to /auth
with the following JSON structure:
Obtaining a JWT Token (for Predict accounts)
1.
Send a
GET
request to /auth/message
to retrieve a message for signing.2.
You will need two wallets:
3.
Send a
POST
request to /auth
with the following JSON structure:
Passing the API Key and JWT Token in Requests
x-api-key
header are not required on Sepolia.{
"headers": {
"x-api-key": "YOUR_API_KEY",
"Authorization": "Bearer YOUR_JWT_TOKEN"
}
}
Modified at 2024-10-17 16:17:03