> For the complete documentation index, see [llms.txt](https://docs.harmony.one/home/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.harmony.one/home/developers/api/methods/staking-related-methods/hmy_getmedianrawstakesnapshot.md).

# hmy\_getMedianRawStakeSnapshot

Returns active validators addresses list

## Returns

* `Number` - big.Int median raw stake of all validators

**Sample Curl Request**

```bash
curl -d '{
    "jsonrpc":"2.0",
    "method":"hmy_getMedianRawStakeSnapshot",
    "params":[],
    "id":1
}' -H 'Content-Type:application/json' -X POST 'https://api.s0.b.hmny.io'
```

**Sample Curl Response**

```bash
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": "1000000000000000"
}
```
