# Request to fetch stakes status by stake account addresses.

## Input Parameters

### network
* Type: string  
* Required: Yes  
* Description: The target Solana network (allowed 'mainnet' or 'testnet').

### stake_accounts
* Type: array of strings  
* Required: Yes  
* Description: List of stake account addresses to look up (length ≥ 1).

## Responses

### 200 OK

### 400 Invalid request.

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

### 500 Internal server error.

## Example Request

```bash
curl --request POST \
     --url https://svc.blockdaemon.com/sia/v2/solana/network/stakes/by-accounts \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '\n{\n  "stake_accounts": []\n}\n'  
```

## Response Examples

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

*Updated 2 months ago*
