# API Reference for Solana

## Network Parameters

- **network**  
  Type: `string`  
  Enum: `mainnet`, `testnet`  
  Required: Yes

## Pagination Parameters

- **page**  
  Type: `int64`  
  Minimum: 1  
  Defaults to: 1  
  Description: The result set page to view

- **per_page**  
  Type: `int64`  
  Range: 1 to 50  
  Defaults to: 50  
  Description: The number of items to include on a single page

## Response Codes

- **200**  
  Ok

- **400**  
  Invalid request.

- **401**  
  Header 'X-API-Key' missing.

- **500**  
  Internal server error.

Updated 2 months ago

---

## Example Request

```shell
curl --request GET \
     --url 'https://svc.blockdaemon.com/boss/v1/solana/mainnet/stake-accounts?page=1&per_page=50' \
     --header 'accept: application/json'
```

## Example Responses

- **application/json**
  - **200**  
  - **400**  
  - **401**  
  - **500**

Updated 2 months ago
