Get claim details by uid

🚧

Important:

Request headers are required. See API basics introduction for more information.

Get claim details by uid

Endpoint

GET /reward/claim/{uid}

Returns the claim details for a given uid associated with the given App (set by the X-API-KEY).

Parameters

Path parameters

Path parameterDescription
uidThe unique identifier of the Claim for this app (ex. 213134081289).

Response

You will receive the claim details including the following fields:

Response fieldsTypeDescriptionCondition
uidStringThe UID of the allocation.Mandatory
statusStringThe status of the allocation (pending | done).Mandatory
reward_uidStringThe UID of the reward associated.Mandatory
from_user_uidStringThe UID of the user from who the rewards are claimed.Mandatory
to_addressStringThe user personal address where rewards are claimedMandatory
amountStringThe amount of rewards claimedMandatory
created_atString
(Timestamp)
The timestamp of the allocation creation.Mandatory

Response example

{
  "success": true,
  "data": {
    "uid": "213134081289",
    "status": "Pending",
    "reward_uid": "112144981245",
    "from_user_uid": "223144788242",
    "to_address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "amount": "1.23",
    "created_at": "2023-08-10T14:07:14.494142Z"
  }
}

Example

The following example gets the claim details for claim 333333333333.

# API_KEY is your api key
# TOKEN is the access token generated with your api key secret

curl -i \
  -X GET \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: API_KEY" \
  -H "Authorization: Bearer TOKEN" \
  "https://api.getoriginal.com/v1/reward/claim/333333333333"