SharkLabs & SharkPool public API (1.0)

Download OpenAPI specification:

Public API endpoints for Sharkpool and Sharklabs data. Rate limit 1req/s, 45req/min

landing

Get LST metrics history

Get last 30 records of LST metrics including ratio_apy and lastEpochTotalLamports

Responses

Response samples

Content type
application/json
{
  • "metrics": [
    ]
}

metrics

Get blockchain metrics

Get aggregated blockchain metrics including Solana price, TPS, SharkSOL APY, pool amount, and epoch progress

Responses

Response samples

Content type
application/json
{
  • "epoch": 0,
  • "epochProgress": 0,
  • "poolAmount": 0,
  • "remainingTime": 0,
  • "sharkSolApy": 0,
  • "solanaPrice": 0,
  • "transactionsPerSecond": 0
}

Get stake amount by validator vote address

Get current stake amount for a validator by their vote address

path Parameters
voteAddress
required
string

Validator vote address

Responses

Response samples

Content type
application/json
{
  • "currentStake": 0,
  • "stakeHistory": [
    ],
  • "voteAddress": "string"
}