Skip to main content
GET
/
staking
/
stakes
curl "https://secureapi.gridlog.io/api/v1/staking/stakes?chain=solana&status=active" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "stakes": [
    {
      "id": "stake_123...",
      "planId": "plan_456...",
      "chain": "solana",
      "amount": "100.0",
      "status": "active",
      "rewards": "1.37",
      "lockedUntil": "2025-04-21T10:00:00.000Z",
      "createdAt": "2025-03-21T10:00:00.000Z"
    }
  ],
  "total": 5,
  "page": 1,
  "limit": 20
}
chain
string
Filter by blockchain
status
string
Filter by status: active, unstaking, withdrawn
page
number
default:1
Page number
limit
number
default:20
Results per page
curl "https://secureapi.gridlog.io/api/v1/staking/stakes?chain=solana&status=active" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "stakes": [
    {
      "id": "stake_123...",
      "planId": "plan_456...",
      "chain": "solana",
      "amount": "100.0",
      "status": "active",
      "rewards": "1.37",
      "lockedUntil": "2025-04-21T10:00:00.000Z",
      "createdAt": "2025-03-21T10:00:00.000Z"
    }
  ],
  "total": 5,
  "page": 1,
  "limit": 20
}