# Get Validators

## GET /v1/api/ethereum/{network}/validators

> Retrieves a list of validators established by the user.

```json
{"openapi":"3.0.3","info":{"title":"Validation Cloud Staking API","version":"1.0.0"},"servers":[{"url":"https://ethereum-staking.sprd.validationcloud.io"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"Validator":{"type":"object","properties":{"created_at":{"type":"string","description":"The date and time when the validator was created."},"index":{"type":"integer","description":"The index of the validator."},"public_key":{"type":"string","description":"The public key of the validator."},"rewards":{"$ref":"#/components/schemas/Rewards"},"status":{"type":"string","description":"The status of the validator."},"withdrawal_address":{"type":"string","description":"The address where the rewards will be sent. Upon exiting, the initial deposit will also be withdrawn to this address."},"sender_address":{"type":"string","description":"The address of the signer."},"network":{"type":"string","enum":["mainnet","hoodi"],"description":"The network"},"is_ssv":{"type":"bool","description":"Whether this is a SSV validator or not."}}},"Rewards":{"properties":{"all":{"type":"integer","description":"The total amount of rewards earned by the validator."},"last_30_days":{"type":"integer","description":"The amount of rewards earned by the validator in the last 30 days."},"last_365_days":{"type":"integer","description":"The amount of rewards earned by the validator in the last 365 days."}},"type":"object"},"ErrorResponse":{"type":"object","properties":{"error":{"type":"string"}}}}},"paths":{"/v1/api/ethereum/{network}/validators":{"get":{"description":"Retrieves a list of validators established by the user.","parameters":[{"name":"network","in":"path","required":true,"schema":{"type":"string","default":"mainnet","enum":["mainnet","hoodi"]},"description":"The network"}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Validator"}}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"tags":["Get Validators"]}}}}
```
