Skip to main content
POST
/
claim
/
deposit
Get Deposit Claim
curl --request POST \
  --url https://oracle.checkpoint.exchange/claim/deposit \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "0x69155e7ca2e688ccdc247f6c4ddf374b3ae77bd6",
  "pointsId": 1
}
'
{
  "success": true,
  "claim": {
    "address": "0x69155e7ca2e688ccdc247f6c4ddf374b3ae77bd6",
    "protocol": "Jumper Exchange",
    "amount": "1000",
    "expiry": "1697654400",
    "nonce": "5"
  },
  "signature": "0xabc123def456..."
}

Body

application/json
address
string
required

The user's wallet address

Example:

"0x69155e7ca2e688ccdc247f6c4ddf374b3ae77bd6"

pointsId
required

The points protocol ID as a string or integer

Example:

1

Response

Successful claim verification

success
boolean
Example:

true

claim
object
signature
string
Example:

"0xabc123def456..."