Our Endpoints

Reward Program Staked USD Values

GET http://crucible.wtf/api/get-program-staked-usd

This endpoint will return a JSON object of Reward Programs and the Total Staked Value in USD for each program.

Example GET request (Mainnet):

`http://crucible.wtf/api/get-program-staked-usd?network=1`

Query Parameters

NameTypeDescription

network*

String

Network ID that data is required for

e.g:

1 = Mainnet

41334 = Avalanche

[{
    rewardProgramAddress, totalStakedUSD
}]

Reward Program Reward USD Values

GET http://crucible.wtf/api/get-program-rewards-usd

This endpoint will return a JSON object of Reward Programs and the Total Rewards Value (of all tokens in the pool) in USD for each program.

Example GET request (Mainnet):

`http://crucible.wtf/api/get-program-rewards-usd?network=1`

Query Parameters

NameTypeDescription

network

String

Network ID that data is required for

e.g:

1 = Mainnet

41334 = Avalanche

[{
    rewardProgramAddress, totalRewardsUSD
}]

Last updated